Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Promoting google-cloud-vision to GA #2633

Merged
merged 1 commit into from
Nov 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ This client supports the following Google Cloud Platform services at a [GA](#ver
- [Cloud Natural Language](google-cloud-language) (GA)
- [Cloud Storage](google-cloud-storage) (GA)
- [Cloud Translation](google-cloud-translate) (GA)
- [Cloud Vision](google-cloud-vision) (GA)

This client supports the following Google Cloud Platform services at a [Beta](#versioning) quality level:

Expand All @@ -29,7 +30,6 @@ This client supports the following Google Cloud Platform services at a [Beta](#v
- [Cloud Pub/Sub](google-cloud-pubsub) (Beta)
- [Cloud Spanner](google-cloud-spanner) (Beta)
- [Cloud Video Intelligence](google-cloud-video-intelligence) (Beta)
- [Cloud Vision](google-cloud-vision) (Beta)
- [Stackdriver Trace](google-cloud-trace) (Beta)

This client supports the following Google Cloud Platform services at an [Alpha](#versioning) quality level:
Expand Down
3 changes: 0 additions & 3 deletions google-cloud-vision/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ Java idiomatic client for [Google Cloud Vision][cloud-vision].
- [Product Documentation][vision-product-docs]
- [Client Library Documentation][vision-client-lib-docs]

> Note: This client is a work-in-progress, and may occasionally
> make backwards-incompatible changes.

Quickstart
----------
If you are using Maven, add this to your pom.xml file
Expand Down
2 changes: 1 addition & 1 deletion google-cloud-vision/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>google-cloud-vision</artifactId>
<version>0.29.1-beta-SNAPSHOT</version>
<version>1.11.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Google Cloud Vision</name>
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-vision</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@
* </pre>
*/
@Generated("by GAPIC v0.0.5")
@BetaApi
public class ImageAnnotatorClient implements BackgroundResource {
private final ImageAnnotatorSettings settings;
private final ImageAnnotatorStub stub;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,13 @@
* </pre>
*/
@Generated("by GAPIC v0.0.5")
@BetaApi
public class ImageAnnotatorSettings extends ClientSettings<ImageAnnotatorSettings> {
/** The default scopes of the service. */
private static final ImmutableList<String> DEFAULT_SERVICE_SCOPES =
ImmutableList.<String>builder().add("https://www.googleapis.com/auth/cloud-platform").build();
ImmutableList.<String>builder()
.add("https://www.googleapis.com/auth/cloud-platform")
.add("https://www.googleapis.com/auth/cloud-vision")
.build();

private static final String DEFAULT_GAPIC_NAME = "gapic";
private static final String DEFAULT_GAPIC_VERSION = "";
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
<storage.version>1.11.1-SNAPSHOT</storage.version>
<trace.version>0.29.1-beta-SNAPSHOT</trace.version>
<translate.version>1.11.1-SNAPSHOT</translate.version>
<vision.version>0.29.1-beta-SNAPSHOT</vision.version>
<vision.version>1.11.1-SNAPSHOT</vision.version>
<video-intelligence.version>0.29.1-beta-SNAPSHOT</video-intelligence.version>
<testing.version>0.29.1-alpha-SNAPSHOT</testing.version>
</properties>
Expand Down Expand Up @@ -691,12 +691,12 @@
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-vision-v1</artifactId>
<version>${generated-proto-beta.version}</version>
<version>${generated-proto-ga.version}</version>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-vision-v1</artifactId>
<version>${generated-proto-beta.version}</version>
<version>${generated-proto-ga.version}</version>
</dependency>

<dependency>
Expand Down