Skip to content

Commit

Permalink
chore: bump version to 1.1.0 (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
olavloite authored Apr 13, 2021
1 parent 0766056 commit 47ee993
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions google-cloud-spanner-change-archiver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>spanner-change-watcher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
</parent>

<properties>
Expand Down Expand Up @@ -81,14 +81,14 @@
<dependency>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>google-cloud-spanner-change-watcher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>google-cloud-spanner-change-publisher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion google-cloud-spanner-change-publisher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Include the following dependency in your application to use Spanner Change Publi
<dependency>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>google-cloud-spanner-change-publisher</artifactId>
<version>0.3.0</version>
<version>1.1.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions google-cloud-spanner-change-publisher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>spanner-change-watcher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
</parent>

<dependencies>
Expand Down Expand Up @@ -67,7 +67,7 @@
<dependency>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>google-cloud-spanner-change-watcher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion google-cloud-spanner-change-watcher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ or entire databases. Add the dependency to your project:
<dependency>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>google-cloud-spanner-change-watcher</artifactId>
<version>0.3.0</version>
<version>1.1.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion google-cloud-spanner-change-watcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>spanner-change-watcher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
</parent>

<dependencies>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>spanner-change-watcher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<name>Google Cloud Spanner Change Watcher Parent</name>
<description>Google Cloud Spanner Change Watcher and Publisher is a framework that emits events when a row has been changed in a Cloud Spanner database. These row change events can be captured and processed in-process as part of a user application, or they can be published to Google Cloud Pubsub for consumption by any other application.</description>
<url>https://github.com/cloudspannerecosystem/spanner-change-watcher</url>
Expand Down Expand Up @@ -68,7 +68,7 @@
<dependency>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>google-cloud-spanner-change-watcher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<exclusions>
<exclusion>
<groupId>org.conscrypt</groupId>
Expand All @@ -79,12 +79,12 @@
<dependency>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>google-cloud-spanner-change-publisher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>google-cloud-spanner-change-archiver</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
</dependency>

<dependency>
Expand Down
8 changes: 4 additions & 4 deletions samples/spanner-change-publisher-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>spanner-change-publisher-samples</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<packaging>jar</packaging>
<name>Google Cloud Spanner Change Publisher Samples</name>
<description>Google Cloud Spanner Data Change Publisher Samples</description>
<parent>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>spanner-change-watcher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<relativePath>../..</relativePath>
</parent>

Expand Down Expand Up @@ -42,14 +42,14 @@
<dependency>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>google-cloud-spanner-change-publisher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>google-cloud-spanner-change-watcher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion samples/spanner-change-watcher-samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ or entire databases. Add the dependency to your project:
<dependency>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>google-cloud-spanner-change-watcher</artifactId>
<version>0.3.0</version>
<version>1.1.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions samples/spanner-change-watcher-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>spanner-change-watcher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<relativePath>../..</relativePath>
</parent>

Expand Down Expand Up @@ -46,7 +46,7 @@
<dependency>
<groupId>com.google.cloudspannerecosystem</groupId>
<artifactId>google-cloud-spanner-change-watcher</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down

0 comments on commit 47ee993

Please sign in to comment.