Skip to content

Commit bfe402e

Browse files
author
Alexandre Curreli
committed
Updated scalatest version to 2.2.0 + added compatibility note with Scala 2.11
1 parent dc74741 commit bfe402e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Scredis is an advanced [Redis](http://redis.io) client entirely written in Scala
1616
## Getting started
1717

1818
### Binaries
19-
Scredis is compatible with Scala 2.9.x and 2.10.x. Binary releases are hosted on the Sonatype Central Repository.
19+
Scredis is compatible with Scala 2.9.x, 2.10 and 2.11. Binary releases are hosted on the Sonatype Central Repository.
2020

2121
```scala
2222
resolvers += "Sonatype OSS Releases" at "https://oss.sonatype.org/content/repositories/releases/"

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ libraryDependencies ++= Seq(
1717
"org.apache.commons" % "commons-lang3" % "3.1",
1818
"commons-pool" % "commons-pool" % "1.6",
1919
"com.typesafe" % "config" % "1.2.0",
20-
"org.scalatest" %% "scalatest" % "2.1.7" % "test"
20+
"org.scalatest" %% "scalatest" % "2.2.0" % "test"
2121
)
2222

2323
publishTo <<= version { (v: String) =>

src/test/scala/scredis/commands/StringsCommandsSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
package scredis.commands
1616

17-
import org.scalatest.{ConfigMap, WordSpec, GivenWhenThen, BeforeAndAfterAll}
17+
import org.scalatest.{ ConfigMap, WordSpec, GivenWhenThen, BeforeAndAfterAll }
1818
import org.scalatest.MustMatchers._
1919

2020
import scredis.{ Redis, Condition }

0 commit comments

Comments
 (0)