diff --git a/README.md b/README.md index cd396b3..f9c761f 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ In your build.sbt resolvers += "mDialog releases" at "http://mdialog.github.io/releases/" - libraryDependencies += "com.mdialog" %% "scala-zeromq" % "0.2.5" + libraryDependencies += "com.mdialog" %% "scala-zeromq" % "1.0.0" To get started with a quick example, create a few sockets: @@ -120,7 +120,7 @@ Close the socket by sending a PoisonPill to the socket actor. ## Documentation -Read the API documentation here: [http://mdialog.github.io/api/scala-zeromq-0.2.5/](http://mdialog.github.io/api/scala-zeromq-0.2.5/) +Read the API documentation here: [http://mdialog.github.io/api/scala-zeromq-1.0.0/](http://mdialog.github.io/api/scala-zeromq-1.0.0/) ## License diff --git a/build.sbt b/build.sbt index ad5c7a2..7e91cf2 100644 --- a/build.sbt +++ b/build.sbt @@ -2,18 +2,18 @@ name := "scala-zeromq" organization := "com.mdialog" -version := "0.2.5" +version := "1.0.0" -scalaVersion := "2.10.2" +scalaVersion := "2.10.3" parallelExecution := false scalacOptions ++= Seq("-unchecked", "-deprecation", "-language:postfixOps") libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.2.1", - "org.scalatest" %% "scalatest" % "1.9.1" % "test", - "com.typesafe.akka" %% "akka-testkit" % "2.2.1" % "test" + "com.typesafe.akka" %% "akka-actor" % "2.3.0", + "org.scalatest" %% "scalatest" % "2.1.0" % "test", + "com.typesafe.akka" %% "akka-testkit" % "2.3.0" % "test" ) resolvers ++= Seq( diff --git a/src/test/scala/zeromq/ZeroMQExtensionSpec.scala b/src/test/scala/zeromq/ZeroMQExtensionSpec.scala index 1bcb863..2a51fbe 100644 --- a/src/test/scala/zeromq/ZeroMQExtensionSpec.scala +++ b/src/test/scala/zeromq/ZeroMQExtensionSpec.scala @@ -3,8 +3,7 @@ package zeromq import language.postfixOps -import org.scalatest.matchers.MustMatchers -import org.scalatest.FunSpec +import org.scalatest.{ FunSpecLike, MustMatchers } import akka.testkit.{ TestProbe, TestKit } import scala.concurrent.duration._ @@ -14,7 +13,7 @@ import akka.actor.{ Actor, ActorSystem, ActorRef, Cancellable } // Much credit goes to akka-zeromq (https://github.com/akka/akka) for the // contents of this file. -class ZeroMQExtensionSpec extends TestKit(ActorSystem("ZeroMQExtensionSpec")) with FunSpec with MustMatchers { +class ZeroMQExtensionSpec extends TestKit(ActorSystem("ZeroMQExtensionSpec")) with FunSpecLike with MustMatchers { implicit val timeout: Timeout = Timeout(2 seconds)