diff --git a/README.md b/README.md index 9fa553c84..7ae0e2b42 100644 --- a/README.md +++ b/README.md @@ -17,26 +17,27 @@ 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.6" + libraryDependencies += "com.github.dnvriend" %% "akka-persistence-jdbc" % "1.0.7" For Maven users, add the following to the pom.xml com.github.dnvriend akka-persistence-jdbc_2.10 - 1.0.6 + 1.0.7 com.github.dnvriend akka-persistence-jdbc_2.11 - 1.0.6 + 1.0.7 -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.7 + - Merged [mwkohout](https://github.com/mwkohout) fix using Oracle's MERGE on issue #3, thanks! + ### 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 diff --git a/build.sbt b/build.sbt index ac627cf53..925f65669 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ organization := "com.github.dnvriend" name := "akka-persistence-jdbc" -version := "1.0.6" +version := "1.0.7" scalaVersion := "2.11.2"