Skip to content

Commit 0cb9d46

Browse files
committed
0.7 Release to fix psql aurora support
1 parent 3a933c0 commit 0cb9d46

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

README.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,25 @@ This project is in extremely early phases (though may be usable). Unless intere
33

44
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.
55

6-
Include the auroraArc driver into your project from maven central:
6+
Include the auroraArc driver into your project from maven central...
7+
8+
For MySQL:
79

810
```script
911
<dependency>
1012
<groupId>org.threadly</groupId>
11-
<artifactId>auroraArc</artifactId>
12-
<version>0.6</version>
13+
<artifactId>auroraArc-mysql</artifactId>
14+
<version>0.7</version>
15+
</dependency>
16+
```
17+
18+
For Postgresql:
19+
20+
```script
21+
<dependency>
22+
<groupId>org.threadly</groupId>
23+
<artifactId>auroraArc-psql</artifactId>
24+
<version>0.7</version>
1325
</dependency>
1426
```
1527

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group = org.threadly
2-
version = 0.7-SNAPSHOT
2+
version = 0.7

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.threadly</groupId>
44
<artifactId>auroraArc</artifactId>
5-
<version>0.7-SNAPSHOT</version>
5+
<version>0.7</version>
66
<packaging>jar</packaging>
77

88
<name>AuroraArc</name>

0 commit comments

Comments
 (0)