File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) . Note that Semantic Versioning is not
5
5
necessarily followed during pre-1.0 development.
6
6
7
+ ## 0.7.0
8
+ * Added value encoder/decoder for ` JSONB `
9
+ * Update to Finagle 18.2.0
10
+
7
11
## 0.6.0
8
12
* Updated to Finagle 18.1.0
9
13
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ dependency.
24
24
25
25
``` scala
26
26
libraryDependencies ++= Seq (
27
- " io.github.finagle" %% " finagle-postgres" % " 0.6 .0"
27
+ " io.github.finagle" %% " finagle-postgres" % " 0.7 .0"
28
28
)
29
29
```
30
30
@@ -59,6 +59,7 @@ See [CHANGELOG.md](CHANGELOG.md)
59
59
* [ The Factory] [ thefactory ]
60
60
* [ Vladimir Kostyukov] [ vkostyukov ]
61
61
* [ Jeremy Smith] ( https://github.com/jeremyrsmith ) (current maintainer)
62
+ * [ Leon Maia] ( https://github.com/leonmaia )
62
63
63
64
## License
64
65
Original file line number Diff line number Diff line change 1
1
2
2
lazy val buildSettings = Seq (
3
3
organization := " io.github.finagle" ,
4
- version := " 0.6 .0" ,
4
+ version := " 0.7 .0" ,
5
5
scalaVersion := " 2.12.4" ,
6
6
crossScalaVersions := Seq (" 2.11.12" ," 2.12.4" ),
7
7
fork in Test := true
@@ -10,8 +10,8 @@ lazy val buildSettings = Seq(
10
10
val baseSettings = Seq (
11
11
resolvers += Resolver .bintrayRepo(" jeremyrsmith" , " maven" ),
12
12
libraryDependencies ++= Seq (
13
- " com.twitter" %% " finagle-core" % " 18.1 .0" ,
14
- " com.twitter" %% " finagle-netty3" % " 18.1 .0" ,
13
+ " com.twitter" %% " finagle-core" % " 18.2 .0" ,
14
+ " com.twitter" %% " finagle-netty3" % " 18.2 .0" ,
15
15
" org.scalatest" %% " scalatest" % " 3.0.4" % " test,it" ,
16
16
" org.scalacheck" %% " scalacheck" % " 1.13.5" % " test,it" ,
17
17
" org.scalamock" %% " scalamock-scalatest-support" % " 3.4.2" % " test,it"
You can’t perform that action at this time.
0 commit comments