Skip to content

Commit

Permalink
Change version to 0.2.0 (#62)
Browse files Browse the repository at this point in the history
### Summary

Change version to 0.2.0

### Description

Change version to 0.2.0
  • Loading branch information
congoamz authored Aug 30, 2021
1 parent da16ded commit 1b6659a
Show file tree
Hide file tree
Showing 21 changed files with 12 additions and 619 deletions.
4 changes: 3 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

Version 1.0.0 (General Availability)
Version 0.2.0 (Public Preview)

- Potential Breaking Change: Loading of XML external entities are not loaded by default. Users must explictly allow it through using the new "allowXmlUnsafeExternalEntity" connection URL parameter. It is recommended that users verify external entities before loading them.

- Added "setAwsProtocolOnly" static method.

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ The AWS JDBC Driver for MySQL can be installed from pre-compiled packages that c

**Example - Direct Download via wget**
```bash
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/0.1.0/aws-mysql-jdbc-0.1.0.jar
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/0.2.0/aws-mysql-jdbc-0.2.0.jar
```

**Example - Adding the Driver to the CLASSPATH**
```bash
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-0.1.0.jar
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-0.2.0.jar
```

#### As a Maven Dependency
Expand All @@ -53,7 +53,7 @@ Alternatively, the driver can be obtained automatically via [Maven's dependency
<dependency>
<groupId>software.aws.rds</groupId>
<artifactId>aws-mysql-jdbc</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</dependency>
</dependencies>
```
Expand All @@ -64,7 +64,7 @@ Alternatively, the driver can be obtained automatically via [Gradle's dependency
**Example - Gradle**
```gradle
dependencies {
compile group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '0.1.0'
compile group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '0.2.0'
}
```
### Using the AWS JDBC Driver for MySQL
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ checkstyle.version=8.30
spotbugs.version=4.0.0

# Build properties
com.mysql.cj.build.driver.version.major=1
com.mysql.cj.build.driver.version.minor=0
com.mysql.cj.build.driver.version.major=0
com.mysql.cj.build.driver.version.minor=2
com.mysql.cj.build.driver.version.subminor=0
com.mysql.cj.build.driver.displayName=Amazon Web Services (AWS) JDBC Driver for MySQL
com.mysql.cj.build.driver.name=aws-mysql-connector-java
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 1b6659a

Please sign in to comment.