Skip to content

Commit b369a1b

Browse files
authored
Merge pull request #73 from leonmaia/0.7.0
release 0.7.0
2 parents f080815 + c2c867e commit b369a1b

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/). Note that Semantic Versioning is not
55
necessarily followed during pre-1.0 development.
66

7+
## 0.7.0
8+
* Added value encoder/decoder for `JSONB`
9+
* Update to Finagle 18.2.0
10+
711
## 0.6.0
812
* Updated to Finagle 18.1.0
913

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependency.
2424

2525
```scala
2626
libraryDependencies ++= Seq(
27-
"io.github.finagle" %% "finagle-postgres" % "0.6.0"
27+
"io.github.finagle" %% "finagle-postgres" % "0.7.0"
2828
)
2929
```
3030

@@ -59,6 +59,7 @@ See [CHANGELOG.md](CHANGELOG.md)
5959
* [The Factory][thefactory]
6060
* [Vladimir Kostyukov][vkostyukov]
6161
* [Jeremy Smith](https://github.com/jeremyrsmith) (current maintainer)
62+
* [Leon Maia](https://github.com/leonmaia)
6263

6364
## License
6465

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
lazy val buildSettings = Seq(
33
organization := "io.github.finagle",
4-
version := "0.6.0",
4+
version := "0.7.0",
55
scalaVersion := "2.12.4",
66
crossScalaVersions := Seq("2.11.12","2.12.4"),
77
fork in Test := true
@@ -10,8 +10,8 @@ lazy val buildSettings = Seq(
1010
val baseSettings = Seq(
1111
resolvers += Resolver.bintrayRepo("jeremyrsmith", "maven"),
1212
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",
1515
"org.scalatest" %% "scalatest" % "3.0.4" % "test,it",
1616
"org.scalacheck" %% "scalacheck" % "1.13.5" % "test,it",
1717
"org.scalamock" %% "scalamock-scalatest-support" % "3.4.2" % "test,it"

0 commit comments

Comments
 (0)