Skip to content

Commit

Permalink
Prepare for v2.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
scullxbones committed Nov 1, 2018
1 parent a89a3b4 commit 817c5e6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 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.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)
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.1.0"
val releaseV = "2.1.1"

val scalaV = "2.11.8"

Expand Down
6 changes: 3 additions & 3 deletions docs/akka25.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
```
Expand Down Expand Up @@ -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" )
```

Expand Down
4 changes: 4 additions & 0 deletions docs/changelog25.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down

0 comments on commit 817c5e6

Please sign in to comment.