diff --git a/CHANGELOG.md b/CHANGELOG.md index 202da595..b5ddd5c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.8.2 +* Fix SSL session verification. +* Fix #75 - Name resolution failed + ## 0.8.0 * Don't include password in stack registry. * Add JSON in default types. diff --git a/README.md b/README.md index 0d930989..7d4feaff 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ dependency. ```scala libraryDependencies ++= Seq( - "io.github.finagle" %% "finagle-postgres" % "0.8.0" + "io.github.finagle" %% "finagle-postgres" % "0.8.2" ) ``` diff --git a/build.sbt b/build.sbt index e92cadcc..ce16b367 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ lazy val buildSettings = Seq( organization := "io.github.finagle", - version := "0.8.0", + version := "0.8.2", scalaVersion := "2.12.4", crossScalaVersions := Seq("2.11.12","2.12.4"), fork in Test := true