diff --git a/.travis.yml b/.travis.yml index 07b37280..f3b127b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,13 @@ language: scala scala: - - 2.11.4 + - 2.11.5 jdk: - oraclejdk7 services: - memcached - redis script: - - sbt ++2.11.4 coverage test + - sbt ++2.11.5 coverage test - sbt ++2.11.2 test - sbt ++2.11.0 test after_success: "sbt coverageAggregate coveralls" diff --git a/README.md b/README.md index e55384fb..f53b7456 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,8 @@ Because of the use of Scala macros, only specific Scala versions are supported: 0.1.x2.10.3artifactId = cacheable (the previous name of this project) 0.2.x2.11.0 0.3.x2.11.0, 2.11.1, 2.11.2Should also work with 2.11.4+, but not tested - 0.4.x2.11.0, 2.11.1, 2.11.2, 2.11.4 - 0.5.x2.11.0, 2.11.1, 2.11.2, 2.11.4 + 0.4.x2.11.0, 2.11.1, 2.11.2, 2.11.4Should also work with 2.11.5+, but not tested + 0.5.x2.11.0, 2.11.1, 2.11.2, 2.11.4, 2.11.5 ## How to use diff --git a/project/Build.scala b/project/Build.scala index 3e8bb009..14a7548a 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -18,7 +18,7 @@ import scala.language.postfixOps object ScalaCacheBuild extends Build { object Versions { - val scala = "2.11.4" + val scala = "2.11.5" } lazy val root = Project(id = "scalacache",base = file("."))