Skip to content

Commit

Permalink
Release v1.0.16. (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtisvg authored Apr 23, 2020
1 parent d3cc3e4 commit 26830f1
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ are unsure, it is recommended to use the latest version of `mysql-connector-java

| JDBC Driver Version | Cloud SQL Socket Factory Version |
| -------------------------- | ---------------------------------------- |
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.0.15 |
| mysql-connector-java:6.x | mysql-socket-factory-connector-j-6:1.0.15 |
| mysql-connector-java:5.1.x | mysql-socket-factory:1.0.15 |
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.0.16 |
| mysql-connector-java:6.x | mysql-socket-factory-connector-j-6:1.0.16 |
| mysql-connector-java:5.1.x | mysql-socket-factory:1.0.16 |


##### Maven
Expand All @@ -46,14 +46,14 @@ Include the following in the project's `pom.xml`:
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>mysql-socket-factory-connector-j-8</artifactId>
    <version>1.0.15</version>
    <version>1.0.16</version>
</dependency>
```

##### Gradle
Include the following the project's `build.gradle`
```gradle
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.0.15'
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.0.16'
```

#### PostgreSQL
Expand All @@ -64,14 +64,14 @@ Include the following in the project's `pom.xml`:
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>postgres-socket-factory</artifactId>
    <version>1.0.15</version>
    <version>1.0.16</version>
</dependency>
```

#### Gradle
Include the following the project's `gradle.build`
```gradle
compile 'com.google.cloud.sql:postgres-socket-factory:1.0.15'
compile 'com.google.cloud.sql:postgres-socket-factory:1.0.16'
```


Expand Down Expand Up @@ -128,8 +128,8 @@ This will create a *target* sub-folder within each of the module directories. Wi

Example:
```
mysql-socket-factory-connector-j-8–1.0.15-jar-with-dependencies.jar
postgres-socket-factory-1.0.15-jar-with-dependencies.jar
mysql-socket-factory-connector-j-8–1.0.16-jar-with-dependencies.jar
postgres-socket-factory-1.0.16-jar-with-dependencies.jar
```

---
Expand Down
4 changes: 2 additions & 2 deletions connector-j-5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.0.15</version>
<version>1.0.16</version>
</parent>
<artifactId>mysql-socket-factory</artifactId>
<packaging>jar</packaging>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.0.15</version>
<version>1.0.16</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions connector-j-6/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.0.15</version>
<version>1.0.16</version>
</parent>
<artifactId>mysql-socket-factory-connector-j-6</artifactId>
<packaging>jar</packaging>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.0.15</version>
<version>1.0.16</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions connector-j-8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.0.15</version>
<version>1.0.16</version>
</parent>
<artifactId>mysql-socket-factory-connector-j-8</artifactId>
<packaging>jar</packaging>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.0.15</version>
<version>1.0.16</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.0.15</version>
<version>1.0.16</version>
</parent>
<artifactId>jdbc-socket-factory-core</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.15</version>
<version>1.0.16</version>

<name>Cloud SQL JDBC Socket Factory</name>
<description>
Expand Down
4 changes: 2 additions & 2 deletions postgres/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.0.15</version>
<version>1.0.16</version>
</parent>
<artifactId>postgres-socket-factory</artifactId>
<packaging>jar</packaging>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.0.15</version>
<version>1.0.16</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit 26830f1

Please sign in to comment.