From 266245909fbebca1a438174ec092983ebdd2dc5e Mon Sep 17 00:00:00 2001 From: Brian Scully Date: Sun, 9 Jun 2019 21:59:04 -0400 Subject: [PATCH] Prepare for v2.2.7 release --- README.md | 2 +- build.sbt | 2 +- docs/akka25.md | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0d9c3ea0..d5685a98 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.6` ~ compatible with Akka 2.5.12+ (see [#179](https://github.com/scullxbones/akka-persistence-mongo/issues/179) for details) +* Latest release - `2.2.7` ~ 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 fd1de555..85fcb1fc 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -val releaseV = "2.2.6" +val releaseV = "2.2.7" val scalaV = "2.11.12" diff --git a/docs/akka25.md b/docs/akka25.md index c9336b47..f22e687c 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.6" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-scala" % "2.2.7" ``` (Casbah) ```scala -libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-casbah" % "2.2.6" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-casbah" % "2.2.7" ``` (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.6" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "2.2.7" ``` * 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: ``` @@ -89,7 +89,7 @@ A mongo uri can be specified. This must meet the requirements of [Mongo's uri f For example `mongodb://user:secret@localhost:27017/my-akka-persistence`. If the `database name` is unspecified, it will be defaulted to `akka-persistence`. ``` -akka.contrib.persistence.mongodb.mongo.mongouri = "mongodb://user:password@192.168.0.1:27017,192.168.0.2.2.617/replicated-database" +akka.contrib.persistence.mongodb.mongo.mongouri = "mongodb://user:password@192.168.0.1:27017,192.168.0.2.2.717/replicated-database" ``` If a user, password, and database are specified, the database will be used both as a credentials source as well as journal and/or snapshot storage. @@ -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.6", +libraryDependencies ++= Seq( "com.github.scullxbones" %% "akka-persistence-mongo-tools" % "2.2.7", "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.