8000 Bumping NL, Translate to beta by garrettjonesgoogle · Pull Request #1848 · googleapis/google-cloud-java · GitHub
[go: up one dir, main page]

Skip to content
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@ This client supports the following Google Cloud Platform services at a [Beta](#v
- [Google Cloud Datastore](#google-cloud-datastore-beta) (Beta)
- [Google Cloud Storage](#google-cloud-storage-beta) (Beta)
- [Cloud Spanner](#cloud-spanner-beta) (Beta)
- [Google Cloud Translate](#google-translate-beta) (Beta)
- Cloud Vision (Beta)
- Cloud Natural Language (Beta)

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

- [Google Cloud Compute](#google-cloud-compute-alpha) (Alpha)
- [Google Cloud DNS](#google-cloud-dns-alpha) (Alpha)
- [Google Cloud Pub/Sub](#google-cloud-pubsub-alpha) (Alpha - Not working on App Engine Standard)
- [Google Cloud Resource Manager](#google-cloud-resource-manager-alpha) (Alpha)
- [Google Cloud Translate](#google-translate-alpha) (Alpha)

> Note: This client is a work-in-progress, and may occasionally
> make backwards-incompatible changes.
Expand Down Expand Up @@ -647,7 +648,7 @@ while (projectIterator.hasNext()) {
}
```

Google Translate (Alpha)
Google Translate (Beta)
----------------

- [API Documentation][translate-api]
Expand Down
1 change: 1 addition & 0 deletions google-cloud-language/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +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-language</artifactId>
<version>${beta.version}</version>

This comment was marked as spam.

<packaging>jar</packaging>
<name>Google Cloud Natural Language</name>
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-language</url>
Expand Down
1 change: 1 addition & 0 deletions google-cloud-translate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +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-translate</artifactId>
<version>${beta.version}</version>

This comment was marked as spam.

8000

This comment was marked as spam.

<packaging>jar</packaging>
<name>Google Cloud Translate</name>
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-translate</url>
Expand Down
4 changes: 2 additions & 2 deletions google-cloud/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>google-cloud-language</artifactId>
<version>${project.version}</version>
<version>${beta.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down Expand Up @@ -87,7 +87,7 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>google-cloud-translate</artifactId>
<version>${project.version}</version>
<version>${beta.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
0