Skip to content

Commit

Permalink
Release 2.2.6.14 (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaTP authored May 18, 2021
1 parent 05e3a46 commit 040fac8
Show file tree
Hide file tree
Showing 3 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" % "2.2.6.9"
libraryDependencies += "org.akka-js" %%% "akkajsactor" % "2.2.6.14"
```

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

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

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

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


Please note that Akka.js 2.2.6.9 is shipped from the stable Akka 2.6.9.
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.6.9/scala.html).
Please note that Akka.js 2.2.6.14 is shipped from the stable Akka 2.6.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.6.14/scala.html).

Check out the @andreaTP session at Scala Days 2016:
[slides](https://github.com/andreaTP/sd2016.git)
Expand Down
Empty file.
4 changes: 2 additions & 2 deletions publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ sbt clean

sbt "akkaJsActorJS/compile"

sbt ";++2.12.10;akkaJsActorJS/publishSigned;akkaJsActorStreamJS/publishSigned;akkaJsActorStreamTypedJS/publishSigned;akkaJsActorTypedJS/publishSigned;akkaJsStreamTestkitJS/publishSigned;akkaJsTestkitJS/publishSigned;akkaJsTypedTestkitJS/publishSigned"
sbt ";++2.12.13;akkaJsActorJS/publishSigned;akkaJsActorStreamJS/publishSigned;akkaJsActorStreamTypedJS/publishSigned;akkaJsActorTypedJS/publishSigned;akkaJsStreamTestkitJS/publishSigned;akkaJsTestkitJS/publishSigned;akkaJsTypedTestkitJS/publishSigned"

sbt ";++2.13.1;akkaJsActorJS/publishSigned;akkaJsActorStreamJS/publishSigned;akkaJsActorStreamTypedJS/publishSigned;akkaJsActorTypedJS/publishSigned;akkaJsStreamTestkitJS/publishSigned;akkaJsTestkitJS/publishSigned;akkaJsTypedTestkitJS/publishSigned"
sbt ";++2.13.4;akkaJsActorJS/publishSigned;akkaJsActorStreamJS/publishSigned;akkaJsActorStreamTypedJS/publishSigned;akkaJsActorTypedJS/publishSigned;akkaJsStreamTestkitJS/publishSigned;akkaJsTestkitJS/publishSigned;akkaJsTypedTestkitJS/publishSigned"

sbt sonatypeReleaseAll

0 comments on commit 040fac8

Please sign in to comment.