diff --git a/README.md b/README.md index 28307c1d2..9fa553c84 100644 --- a/README.md +++ b/README.md @@ -17,26 +17,30 @@ something out. # Installation To include the JDBC plugin into your sbt project, add the following lines to your build.sbt file: - libraryDependencies += "com.github.dnvriend" %% "akka-persistence-jdbc" % "1.0.5" + libraryDependencies += "com.github.dnvriend" %% "akka-persistence-jdbc" % "1.0.6" For Maven users, add the following to the pom.xml com.github.dnvriend akka-persistence-jdbc_2.10 - 1.0.5 + 1.0.6 com.github.dnvriend akka-persistence-jdbc_2.11 - 1.0.5 + 1.0.6 This version of akka-persistence-jdbc depends on Akka 2.3.4 and is cross-built against Scala 2.10.4 and 2.11.1 ## What's new? +### 1.0.6 + - Fixed - Issue3: Handling save attempts with duplicate snapshot ids and persistence ids + - Fixed - Issue5: Connection pool is being redefined when using journal and snapshot store + ### 1.0.5 - Akka 2.3.5 -> 2.3.6 - ScalikeJDBC 2.1.0 -> 2.1.1 diff --git a/build.sbt b/build.sbt index ee90f0593..ac627cf53 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ organization := "com.github.dnvriend" name := "akka-persistence-jdbc" -version := "1.0.5" +version := "1.0.6" scalaVersion := "2.11.2"