Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test with Scala 2.11.5 #26

Merged
merged 1 commit into from
Jan 16, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Because of the use of Scala macros, only specific Scala versions are supported:
<tr><td>0.1.x</td><td>2.10.3</td><td>artifactId = cacheable (the previous name of this project)</td></tr>
<tr><td>0.2.x</td><td>2.11.0</td><td></td></tr>
<tr><td>0.3.x</td><td>2.11.0, 2.11.1, 2.11.2</td><td>Should also work with 2.11.4+, but not tested</td></tr>
<tr><td>0.4.x</td><td>2.11.0, 2.11.1, 2.11.2, 2.11.4</td><td></td></tr>
<tr><td>0.5.x</td><td>2.11.0, 2.11.1, 2.11.2, 2.11.4</td><td></td></tr>
<tr><td>0.4.x</td><td>2.11.0, 2.11.1, 2.11.2, 2.11.4</td><td>Should also work with 2.11.5+, but not tested</td></tr>
<tr><td>0.5.x</td><td>2.11.0, 2.11.1, 2.11.2, 2.11.4, 2.11.5</td><td></td></tr>
</table>

## How to use
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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("."))
Expand Down