Skip to content

Commit

Permalink
Prepare for v2.2.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
scullxbones committed Jul 10, 2019
1 parent ef9d9ac commit af3a063
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

* Cross-compiled for 2.11 / 2.12 - Java 8 targeted
* Active development
* Latest release - `2.2.8` ~ compatible with Akka 2.5.12+ (see [#179](https://github.com/scullxbones/akka-persistence-mongo/issues/179) for details)
* Latest release - `2.2.9` ~ 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)
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val releaseV = "2.2.8"
val releaseV = "2.2.9"

val scalaV = "2.11.12"

Expand Down
8 changes: 4 additions & 4 deletions docs/akka25.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@

(Official Scala)
```scala
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-scala" % "2.2.8"
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-scala" % "2.2.9"
```
(Casbah)
```scala
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-casbah" % "2.2.8"
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-casbah" % "2.2.9"
```
(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.8"
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "2.2.9"
```
* 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:
```
Expand Down Expand Up @@ -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.8",
libraryDependencies ++= Seq( "com.github.scullxbones" %% "akka-persistence-mongo-tools" % "2.2.9",
"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.
Expand Down
3 changes: 3 additions & 0 deletions docs/changelog25.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog for 2.x major version

### 2.2.9
* improve the way official driver settings are used for connection (#236)

### 2.2.8
* Merge pull request #235 from JeanFrancoisGuena/streamed-currentPersistenceIds
* Source for current Persistence Ids processed in a streamed manner
Expand Down

0 comments on commit af3a063

Please sign in to comment.