Skip to content

Commit

Permalink
Release v1.0.11 (#101)
Browse files Browse the repository at this point in the history
* Updated README.md.

* Bump SNAPSHOT versions.

* Bump previous versions.
  • Loading branch information
kurtisvg authored Sep 18, 2018
1 parent b64406f commit 1d79708
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 27 deletions.
21 changes: 14 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ gcloud auth application-default login

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


##### Maven
Expand All @@ -44,14 +44,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.10</version>
    <version>1.0.11</version>
</dependency>
```

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

#### PostgreSQL
Expand All @@ -62,14 +62,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.10</version>
    <version>1.0.11</version>
</dependency>
```

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


Expand Down Expand Up @@ -114,6 +114,13 @@ jdbc:postgresql://google/<DATABASE_NAME>?cloudSqlInstance=<INSTANCE_CONNECTION_N

## Additional Information

### Specifying IP Type

The `ipTypes` argument can be used to specify a comma delimited list of preferred IP types for
connecting to a Cloud SQL instance. The arguement `ipTypes=PRIVATE` will force the
SocketFactory to connect with an instance's associated private IP. Default value is
`PUBLIC,PRIVATE`.

### Connect with IntelliJ

In order to [connect IntelliJ](https://jetbrains.com/help/idea/connecting-to-a-database.html#mysql)
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 @@ -5,7 +5,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
</parent>
<artifactId>mysql-socket-factory</artifactId>
<packaging>jar</packaging>
Expand All @@ -27,7 +27,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
</dependency>
<dependency>
<groupId>com.github.jnr</groupId>
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 @@ -5,7 +5,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
</parent>
<artifactId>mysql-socket-factory-connector-j-6</artifactId>
<packaging>jar</packaging>
Expand All @@ -27,7 +27,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
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 @@ -5,7 +5,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
</parent>
<artifactId>mysql-socket-factory-connector-j-8</artifactId>
<packaging>jar</packaging>
Expand All @@ -27,7 +27,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
</parent>
<artifactId>jdbc-socket-factory-core</artifactId>
<packaging>jar</packaging>
Expand Down
4 changes: 2 additions & 2 deletions examples/compute-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.google.cloud.sql.example</groupId>
<artifactId>mysql-socket-factory-compute-engine</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -37,7 +37,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>mysql-socket-factory</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>

<dependency>
Expand Down
6 changes: 3 additions & 3 deletions examples/getting-started/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.google.cloud.sql.example</groupId>
<artifactId>mysql-socket-factory-getting-started</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -43,13 +43,13 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>mysql-socket-factory</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>

<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>postgres-socket-factory</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions examples/mysql/compute-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.google.cloud.sql.example</groupId>
<artifactId>mysql-socket-factory-compute-engine</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -37,7 +37,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>mysql-socket-factory</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion examples/postgres/appengine-standard-java8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>postgres-socket-factory</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>
<!-- [END dependencies] -->
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions examples/postgres/compute-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.google.cloud.sql.example</groupId>
<artifactId>postgres-socket-factory-compute-engine</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -37,7 +37,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>postgres-socket-factory</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</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 @@ -5,7 +5,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
<relativePath>..</relativePath>
</parent>

Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
</dependency>
<dependency>
<groupId>com.github.jnr</groupId>
Expand Down

0 comments on commit 1d79708

Please sign in to comment.