diff --git a/README.md b/README.md index 959cfce5..20649bed 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.10` ~ compatible with Akka 2.5.12+ (see [#179](https://github.com/scullxbones/akka-persistence-mongo/issues/179) for details) +* Latest release - `2.3.0` ~ 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 a61f7be7..351ffb05 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -val releaseV = "2.2.10" +val releaseV = "2.3.0" val scala211V = "2.11.12" val scala212V = "2.12.9" diff --git a/docs/akka25.md b/docs/akka25.md index ae92b2db..caadd16e 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.10" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-scala" % "2.3.0" ``` (Casbah) ```scala -libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-casbah" % "2.2.10" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-casbah" % "2.3.0" ``` (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.10" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "2.3.0" ``` * 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.10", +libraryDependencies ++= Seq( "com.github.scullxbones" %% "akka-persistence-mongo-tools" % "2.3.0", "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 2f935942..da2d8167 100644 --- a/docs/changelog25.md +++ b/docs/changelog25.md @@ -1,5 +1,10 @@ ## Changelog for 2.x major version +### 2.3.0 +* Merge pull request #247 from WellingR/feature/scala-2.13-support +* Support scala 2.13 +* Libary upgrades in preparation for scala 2.13 + ### 2.2.10 * Clean up some old deprecation and warning messages; reintroduce configured writeconcern * Reactive Mongo 0.18.4 Compatibility (#244)