diff --git a/akka-actor-tests/src/test/scala/akka/config/ConfigSpec.scala b/akka-actor-tests/src/test/scala/akka/config/ConfigSpec.scala index 7d19f4f8932..99c5785e7d6 100644 --- a/akka-actor-tests/src/test/scala/akka/config/ConfigSpec.scala +++ b/akka-actor-tests/src/test/scala/akka/config/ConfigSpec.scala @@ -27,8 +27,8 @@ class ConfigSpec extends AkkaSpec(ConfigFactory.defaultReference(ActorSystem.fin { import config._ - getString("akka.version") should ===("2.4-SNAPSHOT") - settings.ConfigVersion should ===("2.4-SNAPSHOT") + getString("akka.version") should ===("2.4.0-RC1") + settings.ConfigVersion should ===("2.4.0-RC1") getBoolean("akka.daemonic") should ===(false) diff --git a/akka-actor/src/main/resources/reference.conf b/akka-actor/src/main/resources/reference.conf index 0b9784c260e..d1e2037f24d 100644 --- a/akka-actor/src/main/resources/reference.conf +++ b/akka-actor/src/main/resources/reference.conf @@ -7,7 +7,7 @@ akka { # Akka version, checked against the runtime version of Akka. - version = "2.4-SNAPSHOT" + version = "2.4.0-RC1" # Home directory of Akka, modules in the deploy directory will be loaded home = "" diff --git a/akka-actor/src/main/scala/akka/actor/ActorSystem.scala b/akka-actor/src/main/scala/akka/actor/ActorSystem.scala index 5df607a02d4..695c1dbbea3 100644 --- a/akka-actor/src/main/scala/akka/actor/ActorSystem.scala +++ b/akka-actor/src/main/scala/akka/actor/ActorSystem.scala @@ -25,7 +25,7 @@ import java.util.Locale object ActorSystem { - val Version: String = "2.4-SNAPSHOT" + val Version: String = "2.4.0-RC1" val EnvHome: Option[String] = System.getenv("AKKA_HOME") match { case null | "" | "." ⇒ None diff --git a/akka-docs/rst/intro/deployment-scenarios.rst b/akka-docs/rst/intro/deployment-scenarios.rst index 891c4cf1bb3..03dd6faf0d1 100644 --- a/akka-docs/rst/intro/deployment-scenarios.rst +++ b/akka-docs/rst/intro/deployment-scenarios.rst @@ -51,9 +51,9 @@ To start the application (on a unix-based system): .. code-block:: none cd target/universal/ - unzip akka-sample-main-scala-2.4-SNAPSHOT.zip - chmod u+x akka-sample-main-scala-2.4-SNAPSHOT/bin/akka-sample-main-scala - akka-sample-main-scala-2.4-SNAPSHOT/bin/akka-sample-main-scala sample.hello.Main + unzip akka-sample-main-scala-2.4.0-RC1.zip + chmod u+x akka-sample-main-scala-2.4.0-RC1/bin/akka-sample-main-scala + akka-sample-main-scala-2.4.0-RC1/bin/akka-sample-main-scala sample.hello.Main Use ``Ctrl-C`` to interrupt and exit the application. diff --git a/akka-kernel/src/main/dist/README b/akka-kernel/src/main/dist/README index d1eacb7972d..99aba3511d0 100644 --- a/akka-kernel/src/main/dist/README +++ b/akka-kernel/src/main/dist/README @@ -2,7 +2,7 @@ Akka ==== -This is the Akka 2.4-SNAPSHOT download. +This is the Akka 2.4.0-RC1 download. Included are all libraries, documentation, and sources for Akka. diff --git a/akka-kernel/src/main/dist/config/application.conf b/akka-kernel/src/main/dist/config/application.conf index 513a211e3fa..9f3e4b49c37 100644 --- a/akka-kernel/src/main/dist/config/application.conf +++ b/akka-kernel/src/main/dist/config/application.conf @@ -1,3 +1,3 @@ # In this file you can override any option defined in the 'reference.conf' files. # Copy in all or parts of the 'reference.conf' files and modify as you please. -# For more info about config, please visit the Akka Documentation: http://akka.io/docs/akka/2.4-SNAPSHOT/ +# For more info about config, please visit the Akka Documentation: http://akka.io/docs/akka/2.4.0-RC1/ diff --git a/akka-samples/akka-sample-camel-java/build.sbt b/akka-samples/akka-sample-camel-java/build.sbt index a325cb121d0..97231720317 100644 --- a/akka-samples/akka-sample-camel-java/build.sbt +++ b/akka-samples/akka-sample-camel-java/build.sbt @@ -1,11 +1,11 @@ name := "akka-sample-camel-java" -version := "2.4-SNAPSHOT" +version := "2.4.0-RC1" scalaVersion := "2.11.5" libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-camel" % "2.4-SNAPSHOT", + "com.typesafe.akka" %% "akka-camel" % "2.4.0-RC1", "org.apache.camel" % "camel-jetty" % "2.10.3", "org.apache.camel" % "camel-quartz" % "2.10.3", "org.slf4j" % "slf4j-api" % "1.7.2", diff --git a/akka-samples/akka-sample-camel-java/tutorial/index.html b/akka-samples/akka-sample-camel-java/tutorial/index.html index b2a0cc569ac..71fb6ce4bf3 100644 --- a/akka-samples/akka-sample-camel-java/tutorial/index.html +++ b/akka-samples/akka-sample-camel-java/tutorial/index.html @@ -8,7 +8,7 @@
This tutorial contains 3 samples of -Akka Camel. +Akka Camel.
This example demonstrates how to implement consumer and producer actors that support - + Asynchronous routing with their Camel endpoints. The sample application transforms the content of the Akka homepage, http://akka.io, by replacing every occurrence of *Akka* with *AKKA*. diff --git a/akka-samples/akka-sample-camel-scala/build.sbt b/akka-samples/akka-sample-camel-scala/build.sbt index 5bf2a48ebfc..b31d41e8df7 100644 --- a/akka-samples/akka-sample-camel-scala/build.sbt +++ b/akka-samples/akka-sample-camel-scala/build.sbt @@ -1,12 +1,12 @@ name := "akka-sample-camel-scala" -version := "2.4-SNAPSHOT" +version := "2.4.0-RC1" scalaVersion := "2.11.5" libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT", - "com.typesafe.akka" %% "akka-camel" % "2.4-SNAPSHOT", + "com.typesafe.akka" %% "akka-actor" % "2.4.0-RC1", + "com.typesafe.akka" %% "akka-camel" % "2.4.0-RC1", "org.apache.camel" % "camel-jetty" % "2.10.3", "org.apache.camel" % "camel-quartz" % "2.10.3", "org.slf4j" % "slf4j-api" % "1.7.2", diff --git a/akka-samples/akka-sample-camel-scala/tutorial/index.html b/akka-samples/akka-sample-camel-scala/tutorial/index.html index 648ba73a480..8ac46b2e4fc 100644 --- a/akka-samples/akka-sample-camel-scala/tutorial/index.html +++ b/akka-samples/akka-sample-camel-scala/tutorial/index.html @@ -8,7 +8,7 @@
This tutorial contains 3 samples of -Akka Camel. +Akka Camel.
This example demonstrates how to implement consumer and producer actors that support - + Asynchronous routing with their Camel endpoints. The sample application transforms the content of the Akka homepage, http://akka.io, by replacing every occurrence of *Akka* with *AKKA*. diff --git a/akka-samples/akka-sample-cluster-java/build.sbt b/akka-samples/akka-sample-cluster-java/build.sbt index 4f3e788d0ef..49485d6f1e2 100644 --- a/akka-samples/akka-sample-cluster-java/build.sbt +++ b/akka-samples/akka-sample-cluster-java/build.sbt @@ -1,14 +1,14 @@ import com.typesafe.sbt.SbtMultiJvm import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.MultiJvm -val akkaVersion = "2.4-SNAPSHOT" +val akkaVersion = "2.4.0-RC1" val project = Project( id = "akka-sample-cluster-java", base = file("."), settings = Project.defaultSettings ++ SbtMultiJvm.multiJvmSettings ++ Seq( name := "akka-sample-cluster-java", - version := "2.4-SNAPSHOT", + version := "2.4.0-RC1", scalaVersion := "2.11.6", scalacOptions in Compile ++= Seq("-encoding", "UTF-8", "-target:jvm-1.8", "-deprecation", "-feature", "-unchecked", "-Xlog-reflective-calls", "-Xlint"), javacOptions in Compile ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked", "-Xlint:deprecation"), diff --git a/akka-samples/akka-sample-cluster-java/tutorial/index.html b/akka-samples/akka-sample-cluster-java/tutorial/index.html index d2a88b01fb9..e95d04bac26 100644 --- a/akka-samples/akka-sample-cluster-java/tutorial/index.html +++ b/akka-samples/akka-sample-cluster-java/tutorial/index.html @@ -8,7 +8,7 @@
This tutorial contains 4 samples illustrating different -Akka cluster features. +Akka cluster features.
You can read more about the cluster concepts in the -documentation. +documentation.
@@ -143,7 +143,7 @@
In the previous sample we saw how to subscribe to cluster membership events. You can read more about it in the -documentation. +documentation. How can cluster membership events be used?
@@ -233,7 +233,7 @@-All routers +All routers can be made aware of member nodes in the cluster, i.e. deploying new routees or looking up routees on nodes in the cluster. When a node becomes unreachable or leaves the cluster the routees of that node are @@ -244,7 +244,7 @@
You can read more about cluster aware routers in the -documentation. +documentation.
@@ -346,7 +346,7 @@
Open StatsSampleOneMasterMain.java.
-To keep track of a single master we use the Cluster Singleton
+To keep track of a single master we use the Cluster Singleton
in the contrib module. The ClusterSingletonManager
is started on each node.
You can read more about cluster metrics in the -documentation. +documentation.
diff --git a/akka-samples/akka-sample-cluster-scala/build.sbt b/akka-samples/akka-sample-cluster-scala/build.sbt index 2723505a3f9..13c6dad7737 100644 --- a/akka-samples/akka-sample-cluster-scala/build.sbt +++ b/akka-samples/akka-sample-cluster-scala/build.sbt @@ -1,14 +1,14 @@ import com.typesafe.sbt.SbtMultiJvm import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.MultiJvm -val akkaVersion = "2.4-SNAPSHOT" +val akkaVersion = "2.4.0-RC1" val project = Project( id = "akka-sample-cluster-scala", base = file("."), settings = Project.defaultSettings ++ SbtMultiJvm.multiJvmSettings ++ Seq( name := "akka-sample-cluster-scala", - version := "2.4-SNAPSHOT", + version := "2.4.0-RC1", scalaVersion := "2.11.6", scalacOptions in Compile ++= Seq("-encoding", "UTF-8", "-target:jvm-1.8", "-deprecation", "-feature", "-unchecked", "-Xlog-reflective-calls", "-Xlint"), javacOptions in Compile ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked", "-Xlint:deprecation"), diff --git a/akka-samples/akka-sample-cluster-scala/tutorial/index.html b/akka-samples/akka-sample-cluster-scala/tutorial/index.html index 1628cb59700..f8d1d76c9ef 100644 --- a/akka-samples/akka-sample-cluster-scala/tutorial/index.html +++ b/akka-samples/akka-sample-cluster-scala/tutorial/index.html @@ -8,7 +8,7 @@
This tutorial contains 4 samples illustrating different -Akka cluster features. +Akka cluster features.
You can read more about the cluster concepts in the -documentation. +documentation.
@@ -143,7 +143,7 @@
In the previous sample we saw how to subscribe to cluster membership events. You can read more about it in the -documentation. +documentation. How can cluster membership events be used?
@@ -233,7 +233,7 @@-All routers +All routers can be made aware of member nodes in the cluster, i.e. deploying new routees or looking up routees on nodes in the cluster. When a node becomes unreachable or leaves the cluster the routees of that node are @@ -244,7 +244,7 @@
You can read more about cluster aware routers in the -documentation. +documentation.
@@ -345,7 +345,7 @@
Open StatsSampleOneMaster.scala.
-To keep track of a single master we use the Cluster Singleton
+To keep track of a single master we use the Cluster Singleton
in the contrib module. The ClusterSingletonManager
is started on each node.
You can read more about cluster metrics in the -documentation. +documentation.
diff --git a/akka-samples/akka-sample-distributed-data-java/build.sbt b/akka-samples/akka-sample-distributed-data-java/build.sbt index 188d820a6b6..985bc244681 100644 --- a/akka-samples/akka-sample-distributed-data-java/build.sbt +++ b/akka-samples/akka-sample-distributed-data-java/build.sbt @@ -1,14 +1,14 @@ import com.typesafe.sbt.SbtMultiJvm import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.MultiJvm -val akkaVersion = "2.4-SNAPSHOT" +val akkaVersion = "2.4.0-RC1" val project = Project( id = "akka-sample-distributed-data-java", base = file("."), settings = Project.defaultSettings ++ SbtMultiJvm.multiJvmSettings ++ Seq( name := "akka-sample-distributed-data-java", - version := "2.4-SNAPSHOT", + version := "2.4.0-RC1", scalaVersion := "2.11.6", scalacOptions in Compile ++= Seq("-encoding", "UTF-8", "-target:jvm-1.8", "-deprecation", "-feature", "-unchecked", "-Xlog-reflective-calls", "-Xlint"), javacOptions in Compile ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked", "-Xlint:deprecation", "-Xdiags:verbose"), @@ -44,4 +44,4 @@ val project = Project( ) configs (MultiJvm) -fork in run := true \ No newline at end of file +fork in run := true diff --git a/akka-samples/akka-sample-distributed-data-java/tutorial/index.html b/akka-samples/akka-sample-distributed-data-java/tutorial/index.html index d2e9da6d7a1..c567bf19f48 100644 --- a/akka-samples/akka-sample-distributed-data-java/tutorial/index.html +++ b/akka-samples/akka-sample-distributed-data-java/tutorial/index.html @@ -8,7 +8,7 @@
This tutorial contains 5 samples illustrating how to use -Akka Distributed Data. +Akka Distributed Data.
Note that there are some -Limitations +Limitations that you should be aware of. For example, Akka Distributed Data is not intended for Big Data.
@@ -71,7 +71,7 @@OPEN
message on one or several nodes. After that the counting can begin. The open
signal is immediately replicated to all nodes with a boolean
-Flag.
+Flag.
Note writeAll
.
@@ -94,7 +94,7 @@ The counters are kept in a -PNCounterMap +PNCounterMap and updated with:
@@ -139,7 +139,7 @@
Read the
-Using the Replicator
+Using the Replicator
documentation for more details of how to use Get
, Update
, and Subscribe
.
Each product in the cart is represented by a LineItem
and all items in the cart
-is collected in a LWWMap.
+is collected in a LWWMap.
@@ -187,7 +187,7 @@
Read the -Consistency +Consistency section in the documentation to understand the consistency considerations.
@@ -218,7 +218,7 @@
For each named service it is using an
-ORSet.
+ORSet.
Here we are using top level ORSet
entries. An alternative would have been to use a
ORMultiMap
holding all services. That would have a disadvantage if we have many services.
When a data entry is changed the full state of that entry is replicated to other nodes, i.e. when you
diff --git a/akka-samples/akka-sample-distributed-data-scala/build.sbt b/akka-samples/akka-sample-distributed-data-scala/build.sbt
index e19c115141a..9f6e1213263 100644
--- a/akka-samples/akka-sample-distributed-data-scala/build.sbt
+++ b/akka-samples/akka-sample-distributed-data-scala/build.sbt
@@ -1,14 +1,14 @@
import com.typesafe.sbt.SbtMultiJvm
import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.MultiJvm
-val akkaVersion = "2.4-SNAPSHOT"
+val akkaVersion = "2.4.0-RC1"
val project = Project(
id = "akka-sample-distributed-data-scala",
base = file("."),
settings = Project.defaultSettings ++ SbtMultiJvm.multiJvmSettings ++ Seq(
name := "akka-sample-distributed-data-scala",
- version := "2.4-SNAPSHOT",
+ version := "2.4.0-RC1",
scalaVersion := "2.11.6",
scalacOptions in Compile ++= Seq("-encoding", "UTF-8", "-target:jvm-1.8", "-deprecation", "-feature", "-unchecked", "-Xlog-reflective-calls", "-Xlint"),
javacOptions in Compile ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked", "-Xlint:deprecation"),
@@ -43,4 +43,4 @@ val project = Project(
) configs (MultiJvm)
-fork in run := true
\ No newline at end of file
+fork in run := true
diff --git a/akka-samples/akka-sample-distributed-data-scala/tutorial/index.html b/akka-samples/akka-sample-distributed-data-scala/tutorial/index.html
index b0e7690d247..033ecdfae9e 100644
--- a/akka-samples/akka-sample-distributed-data-scala/tutorial/index.html
+++ b/akka-samples/akka-sample-distributed-data-scala/tutorial/index.html
@@ -8,7 +8,7 @@
This tutorial contains 5 samples illustrating how to use -Akka Distributed Data. +Akka Distributed Data.
Note that there are some -Limitations +Limitations that you should be aware of. For example, Akka Distributed Data is not intended for Big Data.
@@ -71,7 +71,7 @@Open
message on one or several nodes. After that the counting can begin. The open
signal is immediately replicated to all nodes with a boolean
-Flag.
+Flag.
Note WriteAll
.
@@ -94,7 +94,7 @@ The counters are kept in a -PNCounterMap +PNCounterMap and updated with:
@@ -131,7 +131,7 @@
Read the
-Using the Replicator
+Using the Replicator
documentation for more details of how to use Get
, Update
, and Subscribe
.
Each product in the cart is represented by a LineItem
and all items in the cart
-is collected in a LWWMap.
+is collected in a LWWMap.
@@ -179,7 +179,7 @@
Read the -Consistency +Consistency section in the documentation to understand the consistency considerations.
@@ -210,7 +210,7 @@
For each named service it is using an
-ORSet.
+ORSet.
Here we are using top level
Read more about ORSet
entries. An alternative would have been to use a
ORMultiMap
holding all services. That would have a disadvantage if we have many services.
When a data entry is changed the full state of that entry is replicated to other nodes, i.e. when you
diff --git a/akka-samples/akka-sample-fsm-java-lambda/build.sbt b/akka-samples/akka-sample-fsm-java-lambda/build.sbt
index adbf84cacdf..c953be8f930 100644
--- a/akka-samples/akka-sample-fsm-java-lambda/build.sbt
+++ b/akka-samples/akka-sample-fsm-java-lambda/build.sbt
@@ -1,6 +1,6 @@
name := "akka-docs-java-lambda"
-version := "2.4-SNAPSHOT"
+version := "2.4.0-RC1"
scalaVersion := "2.11.6"
@@ -11,7 +11,7 @@ javacOptions in doc ++= Seq("-encoding", "UTF-8", "-source", "1.8")
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a")
libraryDependencies ++= Seq(
- "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT",
- "com.typesafe.akka" %% "akka-testkit" % "2.4-SNAPSHOT" % "test",
+ "com.typesafe.akka" %% "akka-actor" % "2.4.0-RC1",
+ "com.typesafe.akka" %% "akka-testkit" % "2.4.0-RC1" % "test",
"junit" % "junit" % "4.11" % "test",
"com.novocode" % "junit-interface" % "0.10" % "test")
diff --git a/akka-samples/akka-sample-fsm-java-lambda/pom.xml b/akka-samples/akka-sample-fsm-java-lambda/pom.xml
index 9284c5c36e8..d2fa8965f93 100644
--- a/akka-samples/akka-sample-fsm-java-lambda/pom.xml
+++ b/akka-samples/akka-sample-fsm-java-lambda/pom.xml
@@ -11,18 +11,18 @@
Dining Hakkers with Become
become
in
-the documentation.
+the documentation.
Read more about akka.actor.FSM
in
-the documentation.
+the documentation.
Read more about become
in
-the documentation.
+the documentation.
Read more about akka.actor.FSM
in
-the documentation.
+the documentation.
sample.hello
and it further assumes that you have the required JAR files for
scala-library
, typesafe-config
and akka-actor
available.
The easiest would be to manage these dependencies with a
-build tool.
+build tool.
diff --git a/akka-samples/akka-sample-main-java/build.sbt b/akka-samples/akka-sample-main-java/build.sbt
index 4abc4269890..689e90cd5b6 100644
--- a/akka-samples/akka-sample-main-java/build.sbt
+++ b/akka-samples/akka-sample-main-java/build.sbt
@@ -1,10 +1,10 @@
name := "akka-sample-main-java"
-version := "2.4-SNAPSHOT"
+version := "2.4.0-RC1"
scalaVersion := "2.11.5"
libraryDependencies ++= Seq(
- "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT"
+ "com.typesafe.akka" %% "akka-actor" % "2.4.0-RC1"
)
diff --git a/akka-samples/akka-sample-main-java/pom.xml b/akka-samples/akka-sample-main-java/pom.xml
index 89896121855..3f49ff6b42b 100644
--- a/akka-samples/akka-sample-main-java/pom.xml
+++ b/akka-samples/akka-sample-main-java/pom.xml
@@ -17,7 +17,7 @@
sample.hello
and it further assumes that you have the required JAR files for
scala-library
, typesafe-config
and akka-actor
available.
The easiest would be to manage these dependencies with a
-build tool.
+build tool.
diff --git a/akka-samples/akka-sample-main-scala/build.sbt b/akka-samples/akka-sample-main-scala/build.sbt index b16a0ef44a7..1c05d63e36c 100644 --- a/akka-samples/akka-sample-main-scala/build.sbt +++ b/akka-samples/akka-sample-main-scala/build.sbt @@ -2,12 +2,12 @@ import NativePackagerHelper._ name := "akka-sample-main-scala" -version := "2.4-SNAPSHOT" +version := "2.4.0-RC1" scalaVersion := "2.11.5" libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT" + "com.typesafe.akka" %% "akka-actor" % "2.4.0-RC1" ) enablePlugins(JavaServerAppPackaging) diff --git a/akka-samples/akka-sample-main-scala/tutorial/index.html b/akka-samples/akka-sample-main-scala/tutorial/index.html index c87f15a9ff4..90dd6dd8345 100644 --- a/akka-samples/akka-sample-main-scala/tutorial/index.html +++ b/akka-samples/akka-sample-main-scala/tutorial/index.html @@ -76,7 +76,7 @@
sample.hello
and it further assumes that you have the required JAR files for
scala-library
, typesafe-config
and akka-actor
available.
The easiest would be to manage these dependencies with a
-build tool.
+build tool.
diff --git a/akka-samples/akka-sample-multi-node-scala/build.sbt b/akka-samples/akka-sample-multi-node-scala/build.sbt index 2b0e5287703..cbc5e08d29f 100644 --- a/akka-samples/akka-sample-multi-node-scala/build.sbt +++ b/akka-samples/akka-sample-multi-node-scala/build.sbt @@ -1,14 +1,14 @@ import com.typesafe.sbt.SbtMultiJvm import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.MultiJvm -val akkaVersion = "2.4-SNAPSHOT" +val akkaVersion = "2.4.0-RC1" val project = Project( id = "akka-sample-multi-node-scala", base = file("."), settings = Project.defaultSettings ++ SbtMultiJvm.multiJvmSettings ++ Seq( name := "akka-sample-multi-node-scala", - version := "2.4-SNAPSHOT", + version := "2.4.0-RC1", scalaVersion := "2.11.5", libraryDependencies ++= Seq( "com.typesafe.akka" %% "akka-actor" % akkaVersion, diff --git a/akka-samples/akka-sample-multi-node-scala/tutorial/index.html b/akka-samples/akka-sample-multi-node-scala/tutorial/index.html index 2240387e64c..349d25648b9 100644 --- a/akka-samples/akka-sample-multi-node-scala/tutorial/index.html +++ b/akka-samples/akka-sample-multi-node-scala/tutorial/index.html @@ -13,12 +13,12 @@
Please refer to the full documentation of -multi-node testing +multi-node testing and the closely related -multi-jvm testing +multi-jvm testing for details. There is also an section on -cluster testing. +cluster testing.
The same test can be run on multiple machines as described in the -multi-node testing documentation. +multi-node testing documentation.
diff --git a/akka-samples/akka-sample-osgi-dining-hakkers/api/pom.xml b/akka-samples/akka-sample-osgi-dining-hakkers/api/pom.xml index e2d652cb848..de1bbe1b5ee 100644 --- a/akka-samples/akka-sample-osgi-dining-hakkers/api/pom.xml +++ b/akka-samples/akka-sample-osgi-dining-hakkers/api/pom.xml @@ -5,7 +5,7 @@This tutorial contains examples that illustrate a subset of -Akka Persistence features. +Akka Persistence features.
This tutorial contains examples that illustrate a subset of -Akka Persistence features. +Akka Persistence features.
-Event sourcing +Event sourcing on the other hand, does not persist commands directly but rather events that have been derived from received commands (not shown here). These events are known to be successfully applicable to current processor state i.e. there's no need for deleting them from the journal. Event sourced processors usually have a lower throughput than command diff --git a/akka-samples/akka-sample-persistence-scala/build.sbt b/akka-samples/akka-sample-persistence-scala/build.sbt index 90d7f3a3611..1a67689b70c 100644 --- a/akka-samples/akka-sample-persistence-scala/build.sbt +++ b/akka-samples/akka-sample-persistence-scala/build.sbt @@ -1,10 +1,10 @@ name := "akka-sample-persistence-scala" -version := "2.4-SNAPSHOT" +version := "2.4.0-RC1" scalaVersion := "2.11.5" libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT", - "com.typesafe.akka" %% "akka-persistence" % "2.4-SNAPSHOT" + "com.typesafe.akka" %% "akka-actor" % "2.4.0-RC1", + "com.typesafe.akka" %% "akka-persistence" % "2.4.0-RC1" ) diff --git a/akka-samples/akka-sample-persistence-scala/tutorial/index.html b/akka-samples/akka-sample-persistence-scala/tutorial/index.html index 73c992930e1..a36bafb8355 100644 --- a/akka-samples/akka-sample-persistence-scala/tutorial/index.html +++ b/akka-samples/akka-sample-persistence-scala/tutorial/index.html @@ -8,7 +8,7 @@
This tutorial contains examples that illustrate a subset of -Akka Persistence features. +Akka Persistence features.
-Event sourcing +Event sourcing on the other hand, does not persist commands directly but rather events that have been derived from received commands (not shown here). These events are known to be successfully applicable to current processor state i.e. there's no need for deleting them from the journal. Event sourced processors usually have a lower throughput than command diff --git a/akka-samples/akka-sample-remote-java/build.sbt b/akka-samples/akka-sample-remote-java/build.sbt index 2c1f17d3772..08ca5144367 100644 --- a/akka-samples/akka-sample-remote-java/build.sbt +++ b/akka-samples/akka-sample-remote-java/build.sbt @@ -1,10 +1,10 @@ name := "akka-sample-remote-java" -version := "2.4-SNAPSHOT" +version := "2.4.0-RC1" scalaVersion := "2.11.5" libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT", - "com.typesafe.akka" %% "akka-remote" % "2.4-SNAPSHOT" + "com.typesafe.akka" %% "akka-actor" % "2.4.0-RC1", + "com.typesafe.akka" %% "akka-remote" % "2.4.0-RC1" ) diff --git a/akka-samples/akka-sample-remote-java/tutorial/index.html b/akka-samples/akka-sample-remote-java/tutorial/index.html index 45ca1b3ac17..f3eddec4381 100644 --- a/akka-samples/akka-sample-remote-java/tutorial/index.html +++ b/akka-samples/akka-sample-remote-java/tutorial/index.html @@ -7,7 +7,7 @@
-In order to showcase the remote capabilities of Akka +In order to showcase the remote capabilities of Akka we thought a remote calculator could do the trick. This sample demonstrates both remote deployment and look-up of remote actors.
diff --git a/akka-samples/akka-sample-remote-scala/build.sbt b/akka-samples/akka-sample-remote-scala/build.sbt index 0ee710a3836..e5a8cf39e93 100644 --- a/akka-samples/akka-sample-remote-scala/build.sbt +++ b/akka-samples/akka-sample-remote-scala/build.sbt @@ -1,10 +1,10 @@ name := "akka-sample-remote-scala" -version := "2.4-SNAPSHOT" +version := "2.4.0-RC1" scalaVersion := "2.11.5" libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT", - "com.typesafe.akka" %% "akka-remote" % "2.4-SNAPSHOT" + "com.typesafe.akka" %% "akka-actor" % "2.4.0-RC1", + "com.typesafe.akka" %% "akka-remote" % "2.4.0-RC1" ) diff --git a/akka-samples/akka-sample-remote-scala/tutorial/index.html b/akka-samples/akka-sample-remote-scala/tutorial/index.html index 952f5e608ff..04ab828cc42 100644 --- a/akka-samples/akka-sample-remote-scala/tutorial/index.html +++ b/akka-samples/akka-sample-remote-scala/tutorial/index.html @@ -7,7 +7,7 @@-In order to showcase the remote capabilities of Akka +In order to showcase the remote capabilities of Akka we thought a remote calculator could do the trick. This sample demonstrates both remote deployment and look-up of remote actors.
diff --git a/akka-samples/akka-sample-supervision-java-lambda/build.sbt b/akka-samples/akka-sample-supervision-java-lambda/build.sbt index 706c200805f..0842953f34e 100644 --- a/akka-samples/akka-sample-supervision-java-lambda/build.sbt +++ b/akka-samples/akka-sample-supervision-java-lambda/build.sbt @@ -11,7 +11,7 @@ javacOptions in doc ++= Seq("-encoding", "UTF-8", "-source", "1.8", "-Xdoclint:n testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a") libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT", - "com.typesafe.akka" %% "akka-testkit" % "2.4-SNAPSHOT" % "test", + "com.typesafe.akka" %% "akka-actor" % "2.4.0-RC1", + "com.typesafe.akka" %% "akka-testkit" % "2.4.0-RC1" % "test", "junit" % "junit" % "4.12" % "test", "com.novocode" % "junit-interface" % "0.11" % "test") diff --git a/akka-samples/akka-sample-supervision-java-lambda/pom.xml b/akka-samples/akka-sample-supervision-java-lambda/pom.xml index 639f639b322..ff522192c32 100644 --- a/akka-samples/akka-sample-supervision-java-lambda/pom.xml +++ b/akka-samples/akka-sample-supervision-java-lambda/pom.xml @@ -17,12 +17,12 @@You should also visit
diff --git a/project/AkkaBuild.scala b/project/AkkaBuild.scala index f9eadbf4870..dfe51b96e59 100644 --- a/project/AkkaBuild.scala +++ b/project/AkkaBuild.scala @@ -32,7 +32,7 @@ object AkkaBuild extends Build { lazy val buildSettings = Dependencies.Versions ++ Seq( organization := "com.typesafe.akka", - version := "2.4-SNAPSHOT" + version := "2.4.0-RC1" ) lazy val root = Project(