Skip to content

Commit

Permalink
Update to 2.5.15 (#90)
Browse files Browse the repository at this point in the history
* bump akka version

* removing unused specs

* Update to Akka 2.5.15
  • Loading branch information
andreaTP committed Aug 24, 2018
1 parent ba417e5 commit 4decdcb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,34 +17,34 @@ Otherwise, if you want to start from scratch:
First of all you need to setup a new [Scala.js project](https://www.scala-js.org/doc/project/).
Then add to your JS project configuration:
```scala
libraryDependencies += "org.akka-js" %%% "akkajsactor" % "1.2.5.14"
libraryDependencies += "org.akka-js" %%% "akkajsactor" % "1.2.5.15"
```

If you want to use Akka Stream:
```scala
libraryDependencies += "org.akka-js" %%% "akkajsactorstream" % "1.2.5.14"
libraryDependencies += "org.akka-js" %%% "akkajsactorstream" % "1.2.5.15"
```

To test your code you can use:
```scala
libraryDependencies += "org.akka-js" %%% "akkajstestkit" % "1.2.5.14" % "test"
libraryDependencies += "org.akka-js" %%% "akkajsstreamtestkit" % "1.2.5.14" % "test"
libraryDependencies += "org.akka-js" %%% "akkajstestkit" % "1.2.5.15" % "test"
libraryDependencies += "org.akka-js" %%% "akkajsstreamtestkit" % "1.2.5.15" % "test"
```

You can also use Akka Typed:
```scala
libraryDependencies += "org.akka-js" %%% "akkajsactortyped" % "1.2.5.14"
libraryDependencies += "org.akka-js" %%% "akkajstypedtestkit" % "1.2.5.14" % "test"
libraryDependencies += "org.akka-js" %%% "akkajsactortyped" % "1.2.5.15"
libraryDependencies += "org.akka-js" %%% "akkajstypedtestkit" % "1.2.5.15" % "test"
```

And Akka Stream Typed interface:
```scala
libraryDependencies += "org.akka-js" %%% "akkajsactorstreamtyped" % "1.2.5.14"
libraryDependencies += "org.akka-js" %%% "akkajsactorstreamtyped" % "1.2.5.15"
```


Please note that Akka.js 1.2.5.14 is shipped from the stable Akka 2.5.14.
At this point you can use most of the Akka core Api as described in the official [docs](http://doc.akka.io/docs/akka/2.5.14/scala.html).
Please note that Akka.js 1.2.5.15 is shipped from the stable Akka 2.5.15.
At this point you can use most of the Akka core Api as described in the official [docs](http://doc.akka.io/docs/akka/2.5.15/scala.html).

Check out the @andreaTP session at Scala Days 2016:
[slides](https://github.com/andreaTP/sd2016.git)
Expand Down
Empty file.
Empty file.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
val akkaJsVersion = "1.2.5.14"
val akkaOriginalVersion = "v2.5.14"
val akkaJsVersion = "1.2.5.15"
val akkaOriginalVersion = "v2.5.15"

val commonSettings = Seq(
scalaVersion := "2.12.4",
Expand Down

0 comments on commit 4decdcb

Please sign in to comment.