Skip to content

release 0.7.0 #73

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). Note that Semantic Versioning is not
necessarily followed during pre-1.0 development.

## 0.7.0
* Added value encoder/decoder for `JSONB`
* Update to Finagle 18.2.0

## 0.6.0
* Updated to Finagle 18.1.0

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependency.

```scala
libraryDependencies ++= Seq(
"io.github.finagle" %% "finagle-postgres" % "0.6.0"
"io.github.finagle" %% "finagle-postgres" % "0.7.0"
)
```

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

## License

Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

lazy val buildSettings = Seq(
organization := "io.github.finagle",
version := "0.6.0",
version := "0.7.0",
scalaVersion := "2.12.4",
crossScalaVersions := Seq("2.11.12","2.12.4"),
fork in Test := true
Expand All @@ -10,8 +10,8 @@ lazy val buildSettings = Seq(
val baseSettings = Seq(
resolvers += Resolver.bintrayRepo("jeremyrsmith", "maven"),
libraryDependencies ++= Seq(
"com.twitter" %% "finagle-core" % "18.1.0",
"com.twitter" %% "finagle-netty3" % "18.1.0",
"com.twitter" %% "finagle-core" % "18.2.0",
"com.twitter" %% "finagle-netty3" % "18.2.0",
"org.scalatest" %% "scalatest" % "3.0.4" % "test,it",
"org.scalacheck" %% "scalacheck" % "1.13.5" % "test,it",
"org.scalamock" %% "scalamock-scalatest-support" % "3.4.2" % "test,it"
Expand Down