Skip to content

Commit

Permalink
Update dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ruippeixotog committed Feb 1, 2017
1 parent 1350f56 commit b0ae96e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
### 0.2.1 (Feb 1, 2016)

Updated dependency versions only.

### 0.2.0 (Nov 3, 2016)

- New features
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -7,7 +7,7 @@ A small library for those who use [akka-testkit](http://doc.akka.io/docs/akka/cu
To use akka-testkit-specs2 in an existing SBT project with Scala 2.11 or Scala 2.12, add the following dependency to your `build.sbt`:

```scala
libraryDependencies += "net.ruippeixotog" %% "akka-testkit-specs2" % "0.2.0"
libraryDependencies += "net.ruippeixotog" %% "akka-testkit-specs2" % "0.2.1"
```

To use it in your specifications, just extend `AkkaSpecification`:
Expand Down Expand Up @@ -78,4 +78,4 @@ class MySpec extends AkkaSpecification {

## Copyright

Copyright (c) 2016 Rui Gonçalves. See LICENSE for details.
Copyright (c) 2016-2017 Rui Gonçalves. See LICENSE for details.
12 changes: 6 additions & 6 deletions build.sbt
Expand Up @@ -2,17 +2,17 @@ import scalariform.formatter.preferences._

name := "akka-testkit-specs2"
organization := "net.ruippeixotog"
version := "0.2.1-SNAPSHOT"
version := "0.2.1"

scalaVersion := "2.12.0"
crossScalaVersions := Seq("2.11.8", "2.12.0")
scalaVersion := "2.12.1"
crossScalaVersions := Seq("2.11.8", "2.12.1")

resolvers ++= Seq(
"Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases")
Resolver.bintrayRepo("scalaz", "releases"))

libraryDependencies ++= Seq(
"org.specs2" %% "specs2-core" % "3.8.6",
"com.typesafe.akka" %% "akka-testkit" % "2.4.12")
"org.specs2" %% "specs2-core" % "3.8.7",
"com.typesafe.akka" %% "akka-testkit" % "2.4.16")

scalariformPreferences := scalariformPreferences.value
.setPreference(DanglingCloseParenthesis, Prevent)
Expand Down

0 comments on commit b0ae96e

Please sign in to comment.