Skip to content

Commit

Permalink
upgraded scala, akka and scalikejdbc
Browse files Browse the repository at this point in the history
  • Loading branch information
dnvriend committed Oct 12, 2015
1 parent 5ae162d commit 3c44031
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ resolvers += "dnvriend at bintray" at "http://dl.bintray.com/dnvriend/maven"
### SBT

```
libraryDependencies += "com.github.dnvriend" %% "akka-persistence-jdbc" % "1.1.8"
libraryDependencies += "com.github.dnvriend" %% "akka-persistence-jdbc" % "1.1.9"
```

### Maven
Expand Down Expand Up @@ -90,13 +90,14 @@ The user manual has been moved to [the wiki](https://github.com/dnvriend/akka-pe
# What's new?
For the full list of what's new see [this wiki page] (https://github.com/dnvriend/akka-persistence-jdbc/wiki/Version-History).

## 1.2.1 (2015-10-12) -> Akka v2.4.x
## 1.2.1 (2015-10-12) - Akka v2.4.x
- Merged PR #27 [Andrey Kouznetsov](https://github.com/prettynatty) don't fail on asyncWrite with empty messages, thanks!

## 1.1.8 (2015-09-04) - Akka v2.3.x
- Compatibility with Akka 2.3.13
- Akka 2.3.12 -> 2.3.13

## 1.1.9 (2015-10-12) - Akka v2.3.x
- scala 2.10.5 -> 2.10.6
- akka 2.3.13 -> 2.3.14
- scalikejdbc 2.2.7 -> 2.2.8

# Code of Conduct
**Contributors all agree to follow the [W3C Code of Ethics and Professional Conduct](http://www.w3.org/Consortium/cepc/).**

Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ organization := "com.github.dnvriend"

name := "akka-persistence-jdbc"

version := "1.1.8"
version := "1.1.9"

scalaVersion := "2.11.7"

crossScalaVersions := Seq("2.10.5", "2.11.7")
crossScalaVersions := Seq("2.10.6", "2.11.7")

resolvers += "krasserm at bintray" at "http://dl.bintray.com/krasserm/maven"

libraryDependencies ++= {
val akkaVersion = "2.3.13"
val akkaVersion = "2.3.14"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-persistence-experimental" % akkaVersion,
"org.scalikejdbc" %% "scalikejdbc" % "2.2.7",
"org.scalikejdbc" %% "scalikejdbc" % "2.2.8",
"commons-codec" % "commons-codec" % "1.10",
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion % Test,
"ch.qos.logback" % "logback-classic" % "1.1.2" % Test,
Expand Down

0 comments on commit 3c44031

Please sign in to comment.