Skip to content
This repository was archived by the owner on Dec 3, 2019. It is now read-only.

Commit a43118f

Browse files
committed
Wrapping up 0.2.19
1 parent 1570906 commit a43118f

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@
2525

2626
# Changelog
2727

28+
## 0.2.19 - 2016-03-17
29+
30+
* Always use `NUMERIC` when handling numbers in prepared statements in PostgreSQL;
31+
* SSL support for PostgreSQL - @alexdupre - #85;
32+
2833
## 0.2.18 - 2015-08-08
2934

3035
* Timeouts implemented queries for MySQL and PostgreSQL - @lifey - #147

README.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ You can view the project's [CHANGELOG here](CHANGELOG.md).
5555
And if you're in a hurry, you can include them in your build like this, if you're using PostgreSQL:
5656

5757
```scala
58-
"com.github.mauricio" %% "postgresql-async" % "0.2.18"
58+
"com.github.mauricio" %% "postgresql-async" % "0.2.19"
5959
```
6060

6161
Or Maven:
@@ -64,14 +64,14 @@ Or Maven:
6464
<dependency>
6565
<groupId>com.github.mauricio</groupId>
6666
<artifactId>postgresql-async_2.11</artifactId>
67-
<version>0.2.18</version>
67+
<version>0.2.19</version>
6868
</dependency>
6969
```
7070

7171
And if you're into MySQL:
7272

7373
```scala
74-
"com.github.mauricio" %% "mysql-async" % "0.2.18"
74+
"com.github.mauricio" %% "mysql-async" % "0.2.19"
7575
```
7676

7777
Or Maven:
@@ -80,7 +80,7 @@ Or Maven:
8080
<dependency>
8181
<groupId>com.github.mauricio</groupId>
8282
<artifactId>mysql-async_2.11</artifactId>
83-
<version>0.2.18</version>
83+
<version>0.2.19</version>
8484
</dependency>
8585
```
8686

README.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ object ProjectBuild extends Build {
4949

5050
object Configuration {
5151

52-
val commonVersion = "0.2.19-SNAPSHOT"
52+
val commonVersion = "0.2.19"
5353
val projectScalaVersion = "2.11.7"
5454
val specs2Version = "2.5"
5555

0 commit comments

Comments
 (0)