Skip to content

Commit

Permalink
0.7 Release to fix psql aurora support
Browse files Browse the repository at this point in the history
  • Loading branch information
jentfoo committed May 24, 2018
1 parent 3a933c0 commit 0cb9d46
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,25 @@ This project is in extremely early phases (though may be usable). Unless intere

The goal is to provide a fault tollerant, and high performance, driver for AWS's Aurora servers. The driver is designed to be small and light weight, with minimal external dependencies.

Include the auroraArc driver into your project from maven central:
Include the auroraArc driver into your project from maven central...

For MySQL:

```script
<dependency>
<groupId>org.threadly</groupId>
<artifactId>auroraArc</artifactId>
<version>0.6</version>
<artifactId>auroraArc-mysql</artifactId>
<version>0.7</version>
</dependency>
```

For Postgresql:

```script
<dependency>
<groupId>org.threadly</groupId>
<artifactId>auroraArc-psql</artifactId>
<version>0.7</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group = org.threadly
version = 0.7-SNAPSHOT
version = 0.7
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.threadly</groupId>
<artifactId>auroraArc</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7</version>
<packaging>jar</packaging>

<name>AuroraArc</name>
Expand Down

0 comments on commit 0cb9d46

Please sign in to comment.