Skip to content

Commit

Permalink
change version to 2.3.7-bin-rp-15v01p01
Browse files Browse the repository at this point in the history
  • Loading branch information
rkuhn committed Dec 15, 2014
1 parent 186661f commit d2d0185
Show file tree
Hide file tree
Showing 29 changed files with 47 additions and 47 deletions.
4 changes: 2 additions & 2 deletions akka-actor-tests/src/test/scala/akka/config/ConfigSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ class ConfigSpec extends AkkaSpec(ConfigFactory.defaultReference(ActorSystem.fin
{
import config._

getString("akka.version") should be("2.3-SNAPSHOT")
settings.ConfigVersion should be("2.3-SNAPSHOT")
getString("akka.version") should be("2.3.7-bin-rp-15v01p01")
settings.ConfigVersion should be("2.3.7-bin-rp-15v01p01")

getBoolean("akka.daemonic") should be(false)

Expand Down
2 changes: 1 addition & 1 deletion akka-actor/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

akka {
# Akka version, checked against the runtime version of Akka.
version = "2.3-SNAPSHOT"
version = "2.3.7-bin-rp-15v01p01"

# Home directory of Akka, modules in the deploy directory will be loaded
home = ""
Expand Down
2 changes: 1 addition & 1 deletion akka-actor/src/main/scala/akka/actor/ActorSystem.scala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import java.util.Locale

object ActorSystem {

val Version: String = "2.3-SNAPSHOT"
val Version: String = "2.3.7-bin-rp-15v01p01"

val EnvHome: Option[String] = System.getenv("AKKA_HOME") match {
case null | "" | "." None
Expand Down
2 changes: 1 addition & 1 deletion akka-kernel/src/main/dist/README
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Akka
====

This is the Akka 2.3-SNAPSHOT download.
This is the Akka 2.3.7-bin-rp-15v01p01 download.

Included are all libraries, documentation, and sources for Akka.

Expand Down
2 changes: 1 addition & 1 deletion akka-kernel/src/main/dist/config/application.conf
Original file line number Diff line number Diff line change
@@ -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.3-SNAPSHOT/
# For more info about config, please visit the Akka Documentation: http://akka.io/docs/akka/2.3.7-bin-rp-15v01p01/
6 changes: 3 additions & 3 deletions akka-samples/akka-docs-java-lambda/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "akka-docs-java-lambda"

version := "2.3-SNAPSHOT"
version := "2.3.7-bin-rp-15v01p01"

scalaVersion := "2.10.4"

Expand All @@ -11,7 +11,7 @@ javacOptions ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint")
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a")

libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3-SNAPSHOT",
"com.typesafe.akka" %% "akka-testkit" % "2.3-SNAPSHOT" % "test",
"com.typesafe.akka" %% "akka-actor" % "2.3.7-bin-rp-15v01p01",
"com.typesafe.akka" %% "akka-testkit" % "2.3.7-bin-rp-15v01p01" % "test",
"junit" % "junit" % "4.11" % "test",
"com.novocode" % "junit-interface" % "0.10" % "test")
6 changes: 3 additions & 3 deletions akka-samples/akka-docs-java-lambda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@
<groupId>sample</groupId>
<artifactId>akka-docs-java-lambda</artifactId>
<packaging>jar</packaging>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>

<dependencies>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_2.10</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-testkit_2.10</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
6 changes: 3 additions & 3 deletions akka-samples/akka-sample-fsm-java-lambda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@
<groupId>sample</groupId>
<artifactId>akka-sample-fsm-java-lambda</artifactId>
<packaging>jar</packaging>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>

<dependencies>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_2.10</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-testkit_2.10</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions akka-samples/akka-sample-hello-kernel/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ name := """hello-kernel"""
mainClass in Compile := Some("sample.kernel.hello.HelloKernel")

libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-kernel" % "2.3-SNAPSHOT",
"com.typesafe.akka" %% "akka-actor" % "2.3-SNAPSHOT"
"com.typesafe.akka" %% "akka-kernel" % "2.3.7-bin-rp-15v01p01",
"com.typesafe.akka" %% "akka-actor" % "2.3.7-bin-rp-15v01p01"
)
2 changes: 1 addition & 1 deletion akka-samples/akka-sample-main-java-lambda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_2.10</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion akka-samples/akka-sample-main-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_2.10</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion akka-samples/akka-sample-osgi-dining-hakkers/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.typesafe.akka.akka-sample-osgi-dining-hakkers</groupId>
<artifactId>project</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.typesafe.akka.akka-sample-osgi-dining-hakkers</groupId>
<artifactId>project</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</parent>

<artifactId>akka-sample-osgi-dining-hakkers-dist</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.typesafe.akka.akka-sample-osgi-dining-hakkers</groupId>
<artifactId>project</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</parent>

<artifactId>akka-sample-osgi-dining-hakkers</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.typesafe.akka.akka-sample-osgi-dining-hakkers</groupId>
<artifactId>project</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion akka-samples/akka-sample-osgi-dining-hakkers/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.typesafe.akka.akka-sample-osgi-dining-hakkers</groupId>
<artifactId>project</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.typesafe.akka.akka-sample-osgi-dining-hakkers</groupId>
<artifactId>project</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion akka-samples/akka-sample-osgi-dining-hakkers/karaf.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

projdir=$(cd $(dirname $0); pwd)
version=2.3-SNAPSHOT
version=2.3.7-bin-rp-15v01p01

# This directory is specified in the build as the root of the tar
# Use tar --strip-components=1 to ignore the root
Expand Down
4 changes: 2 additions & 2 deletions akka-samples/akka-sample-osgi-dining-hakkers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.typesafe.akka.akka-sample-osgi-dining-hakkers</groupId>
<artifactId>project</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<akka.version>2.3-SNAPSHOT</akka.version>
<akka.version>2.3.7-bin-rp-15v01p01</akka.version>
<karaf.version>2.3.1</karaf.version>
<karaf.tooling.exam.version>${karaf.version}</karaf.tooling.exam.version>
<netty.version>3.8.0.Final</netty.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.typesafe.akka.akka-sample-osgi-dining-hakkers</groupId>
<artifactId>project</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion akka-samples/akka-sample-persistence-java-lambda/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ scalaVersion := "2.10.4"
javacOptions ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint")

libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-persistence-experimental" % "2.3-SNAPSHOT"
"com.typesafe.akka" %% "akka-persistence-experimental" % "2.3.7-bin-rp-15v01p01"
)

8 changes: 4 additions & 4 deletions akka-samples/akka-sample-persistence-java-lambda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@
<groupId>sample</groupId>
<artifactId>akka-sample-persistence-java8</artifactId>
<packaging>jar</packaging>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>

<dependencies>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_2.10</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-persistence-experimental_2.10</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-testkit_2.10</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<h2>Akka Persistence Samples</h2>
<p>
This tutorial contains examples that illustrate a subset of
<a href="http://doc.akka.io/docs/akka/2.3-SNAPSHOT/java/lambda-persistence.html" target="_blank">Akka Persistence</a> features.
<a href="http://doc.akka.io/docs/akka/2.3.7-bin-rp-15v01p01/java/lambda-persistence.html" target="_blank">Akka Persistence</a> features.
</p>
<ul>
<li>persistent actor</li>
Expand All @@ -28,7 +28,7 @@ <h2>Akka Persistence Samples</h2>
<h2>Persistent actor</h2>
<p>
<a href="#code/src/main/java/sample/persistence/PersistentActorExample.java" class="shortcut">PersistentActorExample.java</a>
is described in detail in the <a href="http://doc.akka.io/docs/akka/2.3-SNAPSHOT/java/lambda-persistence.html#event-sourcing-java-lambda" target="_blank">Event sourcing</a>
is described in detail in the <a href="http://doc.akka.io/docs/akka/2.3.7-bin-rp-15v01p01/java/lambda-persistence.html#event-sourcing-java-lambda" target="_blank">Event sourcing</a>
section of the user documentation. With every application run, the <code>ExamplePersistentActor</code> is recovered from
events stored in previous application runs, processes new commands, stores new events and snapshots and prints the
current persistent actor state to <code>stdout</code>.
Expand Down
4 changes: 2 additions & 2 deletions akka-samples/akka-sample-persistence-java/build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name := "akka-sample-persistence-java"

version := "2.3-SNAPSHOT"
version := "2.3.7-bin-rp-15v01p01"

scalaVersion := "2.10.4"

libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-persistence-experimental" % "2.3-SNAPSHOT"
"com.typesafe.akka" %% "akka-persistence-experimental" % "2.3.7-bin-rp-15v01p01"
)

4 changes: 2 additions & 2 deletions akka-samples/akka-sample-persistence-java/tutorial/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<h2>Akka Persistence Samples</h2>
<p>
This tutorial contains examples that illustrate a subset of
<a href="http://doc.akka.io/docs/akka/2.3-SNAPSHOT/java/persistence.html" target="_blank">Akka Persistence</a> features.
<a href="http://doc.akka.io/docs/akka/2.3.7-bin-rp-15v01p01/java/persistence.html" target="_blank">Akka Persistence</a> features.
</p>
<ul>
<li>persistent actor</li>
Expand All @@ -28,7 +28,7 @@ <h2>Akka Persistence Samples</h2>
<h2>Persistent actor</h2>
<p>
<a href="#code/src/main/java/sample/persistence/PersistentActorExample.java" class="shortcut">PersistentActorExample.java</a>
is described in detail in the <a href="http://doc.akka.io/docs/akka/2.3-SNAPSHOT/java/persistence.html#event-sourcing-java" target="_blank">Event sourcing</a>
is described in detail in the <a href="http://doc.akka.io/docs/akka/2.3.7-bin-rp-15v01p01/java/persistence.html#event-sourcing-java" target="_blank">Event sourcing</a>
section of the user documentation. With every application run, the <code>ExamplePersistentActor</code> is recovered from
events stored in previous application runs, processes new commands, stores new events and snapshots and prints the
current persistent actor state to <code>stdout</code>.
Expand Down
4 changes: 2 additions & 2 deletions akka-samples/akka-sample-persistence-scala/build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name := "akka-sample-persistence-scala"

version := "2.3-SNAPSHOT"
version := "2.3.7-bin-rp-15v01p01"

scalaVersion := "2.10.4"

libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-persistence-experimental" % "2.3-SNAPSHOT"
"com.typesafe.akka" %% "akka-persistence-experimental" % "2.3.7-bin-rp-15v01p01"
)

Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div>
<p>
This tutorial contains examples that illustrate a subset of
<a href="http://doc.akka.io/docs/akka/2.3-SNAPSHOT/scala/persistence.html" target="_blank">Akka Persistence</a> features.
<a href="http://doc.akka.io/docs/akka/2.3.7-bin-rp-15v01p01/scala/persistence.html" target="_blank">Akka Persistence</a> features.
</p>
<ul>
<li>persistent actor</li>
Expand All @@ -27,7 +27,7 @@
<h2>Persistent actor</h2>
<p>
<a href="#code/src/main/scala/sample/persistence/PersistentActorExample.scala" class="shortcut">PersistentActorExample.scala</a>
is described in detail in the <a href="http://doc.akka.io/docs/akka/2.3-SNAPSHOT/scala/persistence.html#event-sourcing" target="_blank">Event sourcing</a>
is described in detail in the <a href="http://doc.akka.io/docs/akka/2.3.7-bin-rp-15v01p01/scala/persistence.html#event-sourcing" target="_blank">Event sourcing</a>
section of the user documentation. With every application run, the <code>ExamplePersistentActor</code> is recovered from
events stored in previous application runs, processes new commands, stores new events and snapshots and prints the
current persistent actor state to <code>stdout</code>.
Expand Down
4 changes: 2 additions & 2 deletions akka-samples/akka-sample-supervision-java-lambda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_2.10</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-testkit_2.10</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.3.7-bin-rp-15v01p01</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
2 changes: 1 addition & 1 deletion project/AkkaBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ object AkkaBuild extends Build {

lazy val buildSettings = Seq(
organization := "com.typesafe.akka",
version := "2.3-SNAPSHOT",
version := "2.3.7-bin-rp-15v01p01",
scalaVersion := Dependencies.Versions.scala,
crossScalaVersions := Dependencies.Versions.crossScala
)
Expand Down

0 comments on commit d2d0185

Please sign in to comment.