This repository was archived by the owner on Dec 3, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +10
-8
lines changed Expand file tree Collapse file tree 4 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 25
25
26
26
# Changelog
27
27
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
+
28
33
## 0.2.18 - 2015-08-08
29
34
30
35
* Timeouts implemented queries for MySQL and PostgreSQL - @lifey - #147
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ You can view the project's [CHANGELOG here](CHANGELOG.md).
55
55
And if you're in a hurry, you can include them in your build like this, if you're using PostgreSQL:
56
56
57
57
``` scala
58
- " com.github.mauricio" %% " postgresql-async" % " 0.2.18 "
58
+ " com.github.mauricio" %% " postgresql-async" % " 0.2.19 "
59
59
```
60
60
61
61
Or Maven:
@@ -64,14 +64,14 @@ Or Maven:
64
64
<dependency >
65
65
<groupId >com.github.mauricio</groupId >
66
66
<artifactId >postgresql-async_2.11</artifactId >
67
- <version >0.2.18 </version >
67
+ <version >0.2.19 </version >
68
68
</dependency >
69
69
```
70
70
71
71
And if you're into MySQL:
72
72
73
73
``` scala
74
- " com.github.mauricio" %% " mysql-async" % " 0.2.18 "
74
+ " com.github.mauricio" %% " mysql-async" % " 0.2.19 "
75
75
```
76
76
77
77
Or Maven:
@@ -80,7 +80,7 @@ Or Maven:
80
80
<dependency >
81
81
<groupId >com.github.mauricio</groupId >
82
82
<artifactId >mysql-async_2.11</artifactId >
83
- <version >0.2.18 </version >
83
+ <version >0.2.19 </version >
84
84
</dependency >
85
85
```
86
86
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ object ProjectBuild extends Build {
49
49
50
50
object Configuration {
51
51
52
- val commonVersion = " 0.2.19-SNAPSHOT "
52
+ val commonVersion = " 0.2.19"
53
53
val projectScalaVersion = " 2.11.7"
54
54
val specs2Version = " 2.5"
55
55
You can’t perform that action at this time.
0 commit comments