Skip to content

Commit 79d1d4a

Browse files
authored
Release v1.0.8 (#72)
1 parent 108ea7a commit 79d1d4a

File tree

11 files changed

+23
-23
lines changed

11 files changed

+23
-23
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ Add a dependency using your favorite build tool. Maven and Gradle examples are s
2525
<dependency>
2626
    <groupId>com.google.cloud.sql</groupId>
2727
    <artifactId>mysql-socket-factory</artifactId>
28-
    <version>1.0.7</version>
28+
    <version>1.0.8</version>
2929
</dependency>
3030
```
3131

3232
#### Adding dependency (Gradle)
3333

3434
```gradle
35-
compile 'com.google.cloud.sql:mysql-socket-factory:1.0.7'
35+
compile 'com.google.cloud.sql:mysql-socket-factory:1.0.8'
3636
```
3737

3838
#### Using
@@ -58,14 +58,14 @@ A tool is available in `examples/getting-started` that can help generate the JDB
5858
<dependency>
5959
    <groupId>com.google.cloud.sql</groupId>
6060
    <artifactId>postgres-socket-factory</artifactId>
61-
    <version>1.0.7</version>
61+
    <version>1.0.8</version>
6262
</dependency>
6363
```
6464

6565
#### Adding dependency (Gradle)
6666

6767
```gradle
68-
compile 'com.google.cloud.sql:postgres-socket-factory:1.0.7'
68+
compile 'com.google.cloud.sql:postgres-socket-factory:1.0.8'
6969
```
7070

7171
#### Using

connector-j-5/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.google.cloud.sql</groupId>
77
<artifactId>jdbc-socket-factory-parent</artifactId>
8-
<version>1.0.7</version>
8+
<version>1.0.8</version>
99
</parent>
1010
<artifactId>mysql-socket-factory</artifactId>
1111
<packaging>jar</packaging>
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>com.google.cloud.sql</groupId>
2929
<artifactId>jdbc-socket-factory-core</artifactId>
30-
<version>1.0.8-SNAPSHOT</version>
30+
<version>1.0.8</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>com.github.jnr</groupId>

connector-j-6/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.google.cloud.sql</groupId>
77
<artifactId>jdbc-socket-factory-parent</artifactId>
8-
<version>1.0.8-SNAPSHOT</version>
8+
<version>1.0.8</version>
99
</parent>
1010
<artifactId>mysql-socket-factory-connector-j-6</artifactId>
1111
<packaging>jar</packaging>
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>com.google.cloud.sql</groupId>
2828
<artifactId>jdbc-socket-factory-core</artifactId>
29-
<version>1.0.7</version>
29+
<version>1.0.8</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.eclipse.jetty</groupId>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.google.cloud.sql</groupId>
77
<artifactId>jdbc-socket-factory-parent</artifactId>
8-
<version>1.0.8-SNAPSHOT</version>
8+
<version>1.0.8</version>
99
</parent>
1010
<artifactId>jdbc-socket-factory-core</artifactId>
1111
<packaging>jar</packaging>

examples/compute-engine/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.cloud.sql.example</groupId>
66
<artifactId>mysql-socket-factory-compute-engine</artifactId>
7-
<version>1.0.7</version>
7+
<version>1.0.8</version>
88
<build>
99
<plugins>
1010
<plugin>
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.google.cloud.sql</groupId>
3939
<artifactId>mysql-socket-factory</artifactId>
40-
<version>1.0.7</version>
40+
<version>1.0.8</version>
4141
</dependency>
4242

4343
<dependency>

examples/getting-started/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.cloud.sql.example</groupId>
66
<artifactId>mysql-socket-factory-getting-started</artifactId>
7-
<version>1.0.7</version>
7+
<version>1.0.8</version>
88
<build>
99
<plugins>
1010
<plugin>
@@ -43,13 +43,13 @@
4343
<dependency>
4444
<groupId>com.google.cloud.sql</groupId>
4545
<artifactId>mysql-socket-factory</artifactId>
46-
<version>1.0.7</version>
46+
<version>1.0.8</version>
4747
</dependency>
4848

4949
<dependency>
5050
<groupId>com.google.cloud.sql</groupId>
5151
<artifactId>postgres-socket-factory</artifactId>
52-
<version>1.0.7</version>
52+
<version>1.0.8</version>
5353
</dependency>
5454

5555
<dependency>

examples/mysql/compute-engine/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.cloud.sql.example</groupId>
66
<artifactId>mysql-socket-factory-compute-engine</artifactId>
7-
<version>1.0.7</version>
7+
<version>1.0.8</version>
88
<build>
99
<plugins>
1010
<plugin>
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.google.cloud.sql</groupId>
3939
<artifactId>mysql-socket-factory</artifactId>
40-
<version>1.0.7</version>
40+
<version>1.0.8</version>
4141
</dependency>
4242

4343
<dependency>

examples/postgres/appengine-standard-java8/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<dependency>
7070
<groupId>com.google.cloud.sql</groupId>
7171
<artifactId>postgres-socket-factory</artifactId>
72-
<version>1.0.7</version>
72+
<version>1.0.8</version>
7373
</dependency>
7474
<!-- [END dependencies] -->
7575
</dependencies>

examples/postgres/compute-engine/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.cloud.sql.example</groupId>
66
<artifactId>postgres-socket-factory-compute-engine</artifactId>
7-
<version>1.0.7</version>
7+
<version>1.0.8</version>
88
<build>
99
<plugins>
1010
<plugin>
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.google.cloud.sql</groupId>
3939
<artifactId>postgres-socket-factory</artifactId>
40-
<version>1.0.7</version>
40+
<version>1.0.8</version>
4141
</dependency>
4242

4343
<dependency>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.google.cloud.sql</groupId>
66
<artifactId>jdbc-socket-factory-parent</artifactId>
77
<packaging>pom</packaging>
8-
<version>1.0.8-SNAPSHOT</version>
8+
<version>1.0.8</version>
99

1010
<name>Cloud SQL JDBC Socket Factory</name>
1111
<description>

0 commit comments

Comments
 (0)