Skip to content

Commit 605d2bb

Browse files
authored
chore: Updating Versioning for the upcoming 0.2.0 Release (#56)
Summary - Updating CHANGELOG.md for upcoming 0.2.0 Release
1 parent c9572f2 commit 605d2bb

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

CHANGELOG.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
# Changelog
22

3-
## Version 0.1.1 (Public Preview) - 2021-09-29
3+
## [Version 0.2.0 (Public Preview)](https://github.com/awslabs/aws-postgresql-jdbc/releases/tag/0.2.0) - 2021-12-01
4+
45
### Added
5-
* AWS IAM Authentication method
6+
* AWS IAM Authentication is now supported. Usage instructions can be found [here](https://github.com/awslabs/aws-postgresql-jdbc#aws-iam-database-authentication).
7+
8+
### Improvements
9+
* Socket timeout is set after initial connection.
10+
11+
### Breaking Changes
12+
* The driver now only accepts the AWS protocol (jdbc:postgresql:aws:) to avoid any conflicts with the community PostgreSQL JDBC driver. Please update your JDBC connection string to use the AWS protocol.
613

714
## [Version 0.1.0 (Public Preview)](https://github.com/awslabs/aws-postgresql-jdbc/releases/tag/0.1.0) - 2021-04-26
15+
816
Based on the PostgreSQL JDBC 42.2.19 community driver.
17+
918
### Features
1019
* The driver is cluster aware for Amazon Aurora PostgreSQL. It takes advantage of Amazon Aurora’s fast failover capabilities, reducing failover times from minutes to seconds.

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ The AWS JDBC Driver for PostgreSQL can be installed from pre-compiled packages t
3737

3838
**Example - Direct Download via wget**
3939
```bash
40-
wget https://github.com/awslabs/aws-postgresql-jdbc/releases/download/0.1.0/aws-postgresql-jdbc-0.1.0.jar
40+
wget https://github.com/awslabs/aws-postgresql-jdbc/releases/download/0.2.0/aws-postgresql-jdbc-0.2.0.jar
4141
```
4242

4343
**Example - Adding the Driver to the CLASSPATH**
4444
```bash
45-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-postgresql-jdbc-0.1.0.jar
45+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-postgresql-jdbc-0.2.0.jar
4646
```
4747

4848
#### As a Maven Dependency
@@ -54,7 +54,7 @@ You can use [Maven's dependency management](https://search.maven.org/search?q=g:
5454
<dependency>
5555
<groupId>software.aws.rds</groupId>
5656
<artifactId>aws-postgresql-jdbc</artifactId>
57-
<version>0.1.0</version>
57+
<version>0.2.0</version>
5858
</dependency>
5959
</dependencies>
6060
```
@@ -64,7 +64,7 @@ You can use [Gradle's dependency management](https://search.maven.org/search?q=g
6464
**Example - Gradle**
6565
```gradle
6666
dependencies {
67-
compile group: 'software.aws.rds', name: 'aws-postgresql-jdbc', version: '0.1.0'
67+
compile group: 'software.aws.rds', name: 'aws-postgresql-jdbc', version: '0.2.0'
6868
}
6969
```
7070
### Using the AWS JDBC Driver for PostgreSQL

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ kotlin.parallel.tasks.in.project=true
1414
# This is version for PgJdbc itself
1515
# Note: it should not include "-SNAPSHOT" as it is automatically added by build.gradle.kts
1616
# Release version can be generated by using -Prelease or -Prc=<int> arguments
17-
pgjdbc.version=0.1.0
17+
pgjdbc.version=0.2.0
1818

1919
# The options below configures the use of local clone (e.g. testing development versions)
2020
# You can pass un-comment it, or pass option -PlocalReleasePlugins, or -PlocalReleasePlugins=<path>

0 commit comments

Comments
 (0)