diff --git a/README.md b/README.md index d5685a98..b61108a5 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.2.7` ~ compatible with Akka 2.5.12+ (see [#179](https://github.com/scullxbones/akka-persistence-mongo/issues/179) for details) +* Latest release - `2.2.8` ~ compatible with Akka 2.5.12+ (see [#179](https://github.com/scullxbones/akka-persistence-mongo/issues/179) for details) ### 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 85fcb1fc..ca704406 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -val releaseV = "2.2.7" +val releaseV = "2.2.8" val scalaV = "2.11.12" diff --git a/docs/akka25.md b/docs/akka25.md index 3975f14e..993f933a 100644 --- a/docs/akka25.md +++ b/docs/akka25.md @@ -27,16 +27,16 @@ (Official Scala) ```scala -libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-scala" % "2.2.7" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-scala" % "2.2.8" ``` (Casbah) ```scala -libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-casbah" % "2.2.7" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-casbah" % "2.2.8" ``` (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.2.7" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "2.2.8" ``` * 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: ``` @@ -644,7 +644,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.2.7", +libraryDependencies ++= Seq( "com.github.scullxbones" %% "akka-persistence-mongo-tools" % "2.2.8", "org.mongodb.scala" %% "mongo-scala-driver" % "2.4.2" ) ``` Notice that even if you currently don't use it, migration process is performed through Official Scala driver. diff --git a/docs/changelog25.md b/docs/changelog25.md index 3684d9be..55849889 100644 --- a/docs/changelog25.md +++ b/docs/changelog25.md @@ -1,5 +1,10 @@ ## Changelog for 2.x major version +### 2.2.8 +* Merge pull request #235 from JeanFrancoisGuena/streamed-currentPersistenceIds +* Source for current Persistence Ids processed in a streamed manner +* Undo overzealous regex changes from pre release script + ### 2.2.6 * Suffixed collections scala driver migration (#232) * Fixes for cross-build and publishing from sbt 1.x upgrade