Skip to content
This repository was archived by the owner on Feb 14, 2020. It is now read-only.

Commit 318c272

Browse files
committed
0.1.10 release with real dependencies bump
1 parent 8751321 commit 318c272

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Installation
2929
Add the following to your `build.sbt`
3030

3131
```scala
32-
libraryDependencies += "com.beachape.filemanagement" %% "schwatcher" % "0.1.9"
32+
libraryDependencies += "com.beachape.filemanagement" %% "schwatcher" % "0.1.10"
3333
```
3434

3535
If the above does not work because it cannot be resolved, its likely because it hasn't been synced to Maven central yet.
@@ -38,7 +38,7 @@ In that case, download a SNAPSHOT release of the same version by adding this to
3838
```
3939
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
4040
41-
libraryDependencies += "com.beachape.filemanagement" %% "schwatcher" % "0.1.9-SNAPSHOT"
41+
libraryDependencies += "com.beachape.filemanagement" %% "schwatcher" % "0.1.10-SNAPSHOT"
4242
```
4343

4444
__Those using Akka 2.1.x__ should stay on 0.0.2 as 0.0.3 onwards uses Akka 2.2.x, which [requires some work to upgrade to](http://doc.akka.io/docs/akka/current/project/migration-guide-2.1.x-2.2.x.html).

build.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ name := "schwatcher"
22

33
version := "0.1.10-SNAPSHOT"
44

5-
scalaVersion := "2.11.6"
5+
scalaVersion := "2.11.7"
66

7-
crossScalaVersions := Seq("2.10.5", "2.11.6")
7+
crossScalaVersions := Seq("2.10.6", "2.11.7")
88

99
crossVersion := CrossVersion.binary
1010

1111
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
1212

1313
libraryDependencies ++= Seq(
14-
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
15-
"com.typesafe.akka" %% "akka-testkit" % "2.3.9" % "test",
16-
"com.typesafe.akka" %% "akka-actor" % "2.3.9",
17-
"io.reactivex" % "rxscala_2.11" % "0.23.1"
14+
"org.scalatest" %% "scalatest" % "2.2.5" % "test",
15+
"com.typesafe.akka" %% "akka-testkit" % "2.3.14" % "test",
16+
"com.typesafe.akka" %% "akka-actor" % "2.3.14",
17+
"io.reactivex" % "rxscala_2.11" % "0.25.0"
1818
)
1919

2020
publishTo <<= version { v: String =>

0 commit comments

Comments
 (0)