Skip to content
This repository has been archived by the owner on Sep 7, 2022. It is now read-only.

Commit

Permalink
Update to Akka 2.3.0, release 1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Dinn committed Mar 7, 2014
1 parent 4aa89a5 commit ce3f857
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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

Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
5 changes: 2 additions & 3 deletions src/test/scala/zeromq/ZeroMQExtensionSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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._
Expand All @@ -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)

Expand Down

0 comments on commit ce3f857

Please sign in to comment.