diff --git a/README.md b/README.md index c3e653fa..caaf37e8 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ * Cross-compiled for 2.11 / 2.12 - Java 8 targeted * Active development -* Latest release - `2.1.0` ~ compatible with Akka 2.5 +* Latest release - `2.1.1` ~ compatible with Akka 2.5 ### Using Akka 2.4? Use 1.x Series. [![Build Status](https://travis-ci.org/scullxbones/akka-persistence-mongo.svg?branch=akka24)](https://travis-ci.org/scullxbones/akka-persistence-mongo) diff --git a/build.sbt b/build.sbt index 3a9a0fac..b8a29790 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -val releaseV = "2.1.0" +val releaseV = "2.1.1" val scalaV = "2.11.8" diff --git a/docs/akka25.md b/docs/akka25.md index 0608bc9b..6f52a343 100644 --- a/docs/akka25.md +++ b/docs/akka25.md @@ -24,12 +24,12 @@ (Casbah) ```scala -libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-casbah" % "2.1.0" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-casbah" % "2.1.1" ``` (Reactive Mongo) ##### Please note: Supported versions of reactive mongo require the `0.12` series, with a minimum version number of `0.12.3` (for Akka 2.5 support) ```scala -libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "2.1.0" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "2.1.1" ``` * Inside of your `application.conf` file, add the following line if you want to use the journal (snapshot is optional). The casbah/rxmongo selection should be pulled in by a `reference.conf` in the driver jar you choose: ``` @@ -509,7 +509,7 @@ Of course, once this is done, you should **not** start your application, unless ###### Configuration Add the following to your `build.sbt` file: ```scala -libraryDependencies ++= Seq( "com.github.scullxbones" %% "akka-persistence-mongo-tools" % "2.1.0", +libraryDependencies ++= Seq( "com.github.scullxbones" %% "akka-persistence-mongo-tools" % "2.1.1", "org.mongodb" %% "casbah" % "3.1.0" ) ``` diff --git a/docs/changelog25.md b/docs/changelog25.md index d84fd856..ae84ed5e 100644 --- a/docs/changelog25.md +++ b/docs/changelog25.md @@ -1,5 +1,9 @@ ## Changelog for 2.x major version +### 2.1.1 +* fix: Race condition on deleteFrom #203 (#205) +* fix: replace fix #179 with akka/akka #24321 (#206) + ### 2.1.0 * Change live queries to be directly connected to database (#202)