Skip to content

Commit 4a11562

Browse files
Release 0.8.0, bump four APIs to beta
As part of this, introducing some new pom properties: * core.version: version of google-cloud-core * beta.version: version used by beta APIs (which is the project version plus -beta) * storage.version: the version of google-cloud-storage (since several APIs depend on it) Lastly, removing "(Alpha)" from titles in README files except the root README file, because it's hard to keep all those tags up to date.
1 parent 0eb14ec commit 4a11562

28 files changed

Lines changed: 72 additions & 65 deletions

File tree

google-cloud-bigquery/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Google Cloud Java Client for BigQuery (Alpha)
1+
Google Cloud Java Client for BigQuery
22
====================================
33

44
Java idiomatic client for [Google Cloud BigQuery] (https://cloud.google.com/bigquery).

google-cloud-bigquery/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>google-cloud-bigquery</artifactId>
5+
<version>${beta.version}</version>
56
<packaging>jar</packaging>
67
<name>Google Cloud BigQuery</name>
78
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-bigquery</url>
@@ -11,7 +12,7 @@
1112
<parent>
1213
<groupId>com.google.cloud</groupId>
1314
<artifactId>google-cloud-pom</artifactId>
14-
<version>0.7.1-SNAPSHOT</version>
15+
<version>0.8.0</version>
1516
</parent>
1617
<properties>
1718
<site.installationModule>google-cloud-bigquery</site.installationModule>
@@ -20,12 +21,12 @@
2021
<dependency>
2122
<groupId>${project.groupId}</groupId>
2223
<artifactId>google-cloud-core</artifactId>
23-
<version>${project.version}</version>
24+
<version>${core.version}</version>
2425
</dependency>
2526
<dependency>
2627
<groupId>${project.groupId}</groupId>
2728
<artifactId>google-cloud-storage</artifactId>
28-
<version>${project.version}</version>
29+
<version>${storage.version}</version>
2930
<scope>test</scope>
3031
</dependency>
3132
<dependency>
@@ -43,7 +44,7 @@
4344
<dependency>
4445
<groupId>${project.groupId}</groupId>
4546
<artifactId>google-cloud-core</artifactId>
46-
<version>${project.version}</version>
47+
<version>${core.version}</version>
4748
<type>test-jar</type>
4849
<scope>test</scope>
4950
</dependency>

google-cloud-compute/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Google Cloud Java Client for Compute (Alpha)
1+
Google Cloud Java Client for Compute
22
====================================
33

44
Java idiomatic client for [Google Cloud Compute](https://cloud.google.com/compute).

google-cloud-compute/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.google.cloud</groupId>
1313
<artifactId>google-cloud-pom</artifactId>
14-
<version>0.7.1-SNAPSHOT</version>
14+
<version>0.8.0</version>
1515
</parent>
1616
<properties>
1717
<site.installationModule>google-cloud-compute</site.installationModule>
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>${project.groupId}</groupId>
2222
<artifactId>google-cloud-core</artifactId>
23-
<version>${project.version}</version>
23+
<version>${core.version}</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>com.google.apis</groupId>
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>${project.groupId}</groupId>
3939
<artifactId>google-cloud-core</artifactId>
40-
<version>${project.version}</version>
40+
<version>${core.version}</version>
4141
<type>test-jar</type>
4242
<scope>test</scope>
4343
</dependency>

google-cloud-contrib/google-cloud-nio-examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.google.cloud</groupId>
1313
<artifactId>google-cloud-contrib</artifactId>
14-
<version>0.7.1-SNAPSHOT</version>
14+
<version>0.8.0</version>
1515
</parent>
1616
<properties>
1717
<site.installationModule>google-cloud-nio-examples</site.installationModule>
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>${project.groupId}</groupId>
2222
<artifactId>google-cloud-storage</artifactId>
23-
<version>${project.version}</version>
23+
<version>${storage.version}</version>
2424
</dependency>
2525

2626
<dependency>

google-cloud-contrib/google-cloud-nio/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
NIO Filesystem Provider for Google Cloud Storage (Alpha)
1+
NIO Filesystem Provider for Google Cloud Storage
22
========================================================
33

44
Implementation of Java 7 `java.nio.file.FileSystem` for

google-cloud-contrib/google-cloud-nio/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.google.cloud</groupId>
1313
<artifactId>google-cloud-contrib</artifactId>
14-
<version>0.7.1-SNAPSHOT</version>
14+
<version>0.8.0</version>
1515
</parent>
1616
<properties>
1717
<site.installationModule>google-cloud-nio</site.installationModule>
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>${project.groupId}</groupId>
2222
<artifactId>google-cloud-storage</artifactId>
23-
<version>${project.version}</version>
23+
<version>${storage.version}</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>com.google.guava</groupId>

google-cloud-contrib/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.google.cloud</groupId>
1313
<artifactId>google-cloud-pom</artifactId>
14-
<version>0.7.1-SNAPSHOT</version>
14+
<version>0.8.0</version>
1515
</parent>
1616
<properties>
1717
<site.installationModule>google-cloud-contrib</site.installationModule>

google-cloud-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.google.cloud</groupId>
1313
<artifactId>google-cloud-pom</artifactId>
14-
<version>0.7.1-SNAPSHOT</version>
14+
<version>0.8.0</version>
1515
</parent>
1616
<properties>
1717
<site.installationModule>google-cloud-core</site.installationModule>

google-cloud-datastore/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>google-cloud-datastore</artifactId>
5+
<version>${beta.version}</version>
56
<packaging>jar</packaging>
67
<name>Google Cloud Datastore</name>
78
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-datastore</url>
@@ -11,7 +12,7 @@
1112
<parent>
1213
<groupId>com.google.cloud</groupId>
1314
<artifactId>google-cloud-pom</artifactId>
14-
<version>0.7.1-SNAPSHOT</version>
15+
<version>0.8.0</version>
1516
</parent>
1617
<properties>
1718
<site.installationModule>google-cloud-datastore</site.installationModule>
@@ -20,7 +21,7 @@
2021
<dependency>
2122
<groupId>${project.groupId}</groupId>
2223
<artifactId>google-cloud-core</artifactId>
23-
<version>${project.version}</version>
24+
<version>${core.version}</version>
2425
</dependency>
2526
<dependency>
2627
<groupId>com.google.cloud.datastore</groupId>
@@ -41,7 +42,7 @@
4142
<dependency>
4243
<groupId>${project.groupId}</groupId>
4344
<artifactId>google-cloud-core</artifactId>
44-
<version>${project.version}</version>
45+
<version>${core.version}</version>
4546
<type>test-jar</type>
4647
<scope>test</scope>
4748
</dependency>

0 commit comments

Comments
 (0)