From 47cb1b1a891dcd12836cb74fc31cec2aef93c1a2 Mon Sep 17 00:00:00 2001 From: "duncan.devore@gmail.com" Date: Sun, 5 Jun 2016 22:38:29 -0400 Subject: [PATCH] fixes #104 maven snapshot missing. --- .travis.yml | 2 +- README.md | 11 ++++++++--- build.sbt | 10 +++++----- project/plugins.sbt | 2 +- 4 files changed, 15 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index a506eec..4a7a6f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: scala scala: - - "2.11.7" + - "2.11.8" jdk: - oraclejdk8 branches: diff --git a/README.md b/README.md index 88f37fd..880794c 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ A replicated [Akka Persistence](http://doc.akka.io/docs/akka/current/scala/persi | Technology | Version | | :--------: | -------------------------------- | | Plugin | [](https://oss.sonatype.org/content/repositories/snapshots/com/github/ironfish/akka-persistence-mongo-casbah_2.11/1.0.0-SNAPSHOT/) -| Scala | 2.11.7 | -| Akka | 2.4.1 or higher | +| Scala | 2.11.8 | +| Akka | 2.4.7 or higher | | Mongo | 3.1.x or higher | ## Installation @@ -69,7 +69,7 @@ libraryDependencies ++= Seq( #### Snapshot ```XML -// Scala 2.11.7 +// Scala 2.11.8 com.github.ironfish akka-persistence-mongo_2.11 @@ -321,6 +321,11 @@ The [sample applications](https://github.com/ironfish/akka-persistence-mongo-sam ## Change Log +### 1.0.0-SNAPSHOT (Update) + +* Upgrade `Akka` 2.4.7 +* Upgrade `Casbah` to `Async` driver 3.1.1 + ### 1.0.0-SNAPSHOT * Upgrade `Akka` 2.4.1. diff --git a/build.sbt b/build.sbt index b640a30..dd55145 100644 --- a/build.sbt +++ b/build.sbt @@ -1,10 +1,10 @@ -val akkaVer = "2.4.1" -val casbahVer = "3.1.0" +val akkaVer = "2.4.7" +val casbahVer = "3.1.1" val commonsIoVer = "2.4" val embeddedMongoVer = "1.50.1" -val logbackVer = "1.1.3" -val scalaVer = "2.11.7" -val scalatestVer = "2.2.4" +val logbackVer = "1.1.7" +val scalaVer = "2.11.8" +val scalatestVer = "2.2.6" organization := "com.github.ironfish" name := "akka-persistence-mongo" diff --git a/project/plugins.sbt b/project/plugins.sbt index 3eaab06..5136803 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,2 +1,2 @@ -addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "0.5.0") +addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1") addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")