Skip to content

Commit

Permalink
Merge pull request #38 from RomanIakovlev/master
Browse files Browse the repository at this point in the history
Bump Akka and Scala versions to current
  • Loading branch information
ssong-van authored Feb 5, 2018
2 parents 134ae60 + 2b09c8d commit ad6a19d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
# Development SNAPSHOT
Nothing yet

# 0.9.0
- Upgrade Akka to 2.5 and Scala to 2.12.4

# 0.8.0
- Retry Redis operation when the server connection is lost
- Only retries on NoConnectionException
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ This is a plugin for Akka Persistence that uses Redis as backend. It uses [redis
It also depends on play-json for JSON serialization.

## Compatibility

### Scala 2.12 and Akka 2.5.x
Use versions from *0.9.0*
```
resolvers += Resolver.jcenterRepo // Adds Bintray to resolvers for akka-persistence-redis and rediscala
libraryDependencies ++= Seq("com.hootsuite" %% "akka-persistence-redis" % "0.9.0")
```
### Scala 2.12 and Akka 2.4.x
Use versions from *0.7.0*
```
Expand Down
8 changes: 4 additions & 4 deletions project/Version.scala
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
object Version {
val project = "0.8.0"
val scala = "2.12.1"
val crossScala = Seq("2.11.8", "2.12.1")
val akka = "2.4.12"
val project = "0.9.0"
val scala = "2.12.4"
val crossScala = Seq("2.11.11", "2.12.4")
val akka = "2.5.9"
val sprayJson = "1.3.3"
val rediscala = "1.8.0"
val dispatch = "0.12.0"
Expand Down

0 comments on commit ad6a19d

Please sign in to comment.