Skip to content

Commit

Permalink
Update version for release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrik Nordwall committed May 25, 2011
1 parent 3779ee0 commit e49017a
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
Expand Up @@ -18,7 +18,7 @@ class ConfigSpec extends WordSpec with MustMatchers {

getList("akka.boot") must equal(Nil)
getString("akka.time-unit") must equal(Some("seconds"))
getString("akka.version") must equal(Some("1.1.2-SNAPSHOT"))
getString("akka.version") must equal(Some("1.1.2"))

getString("akka.actor.default-dispatcher.type") must equal(Some("GlobalExecutorBasedEventDriven"))
getInt("akka.actor.default-dispatcher.keep-alive-time") must equal(Some(60))
Expand Down
2 changes: 1 addition & 1 deletion akka-actor/src/main/scala/akka/config/Config.scala
Expand Up @@ -15,7 +15,7 @@ class ModuleNotAvailableException(message: String, cause: Throwable = null) exte
* @author <a href="http://jonasboner.com">Jonas Bon&#233;r</a>
*/
object Config {
val VERSION = "1.1.2-SNAPSHOT"
val VERSION = "1.1.2"

val HOME = {
val envHome = System.getenv("AKKA_HOME") match {
Expand Down
4 changes: 2 additions & 2 deletions akka-tutorials/akka-tutorial-first/pom.xml
Expand Up @@ -8,14 +8,14 @@
<groupId>akka.tutorial.first.java</groupId>
<artifactId>akka-tutorial-first-java</artifactId>
<packaging>jar</packaging>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
<url>http://akka.io</url>

<dependencies>
<dependency>
<groupId>se.scalablesolutions.akka</groupId>
<artifactId>akka-actor</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</dependency>
</dependencies>

Expand Down
@@ -1,5 +1,5 @@
project.organization=se.scalablesolutions.akka
project.name=akka-tutorial-first
project.version=1.1.2-SNAPSHOT
project.version=1.1.2
build.scala.versions=2.9.0
sbt.version=0.7.6
Expand Up @@ -2,5 +2,5 @@ import sbt._

class Plugins(info: ProjectInfo) extends PluginDefinition(info) {
val akkaRepo = "Akka Repo" at "http://akka.io/repository"
val akkaPlugin = "se.scalablesolutions.akka" % "akka-sbt-plugin" % "1.1.2-SNAPSHOT"
val akkaPlugin = "se.scalablesolutions.akka" % "akka-sbt-plugin" % "1.1.2"
}
4 changes: 2 additions & 2 deletions akka-tutorials/akka-tutorial-second/pom.xml
Expand Up @@ -8,14 +8,14 @@
<groupId>akka.tutorial.second.java</groupId>
<artifactId>akka-tutorial-second-java</artifactId>
<packaging>jar</packaging>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
<url>http://akka.io</url>

<dependencies>
<dependency>
<groupId>se.scalablesolutions.akka</groupId>
<artifactId>akka-actor</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</dependency>
</dependencies>

Expand Down
@@ -1,5 +1,5 @@
project.organization=se.scalablesolutions.akka
project.name=akka-tutorial-second
project.version=1.1.2-SNAPSHOT
project.version=1.1.2
build.scala.versions=2.9.0
sbt.version=0.7.6
Expand Up @@ -2,5 +2,5 @@ import sbt._

class Plugins(info: ProjectInfo) extends PluginDefinition(info) {
val akkaRepo = "Akka Repo" at "http://akka.io/repository"
val akkaPlugin = "se.scalablesolutions.akka" % "akka-sbt-plugin" % "1.1.2-SNAPSHOT"
val akkaPlugin = "se.scalablesolutions.akka" % "akka-sbt-plugin" % "1.1.2"
}
2 changes: 1 addition & 1 deletion config/akka-reference.conf
Expand Up @@ -6,7 +6,7 @@
# Modify as needed.

akka {
version = "1.1.2-SNAPSHOT" # Akka version, checked against the runtime version of Akka.
version = "1.1.2" # Akka version, checked against the runtime version of Akka.

enabled-modules = [] # Comma separated list of the enabled modules. Options: ["remote", "camel", "http"]

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1,5 +1,5 @@
project.organization=se.scalablesolutions.akka
project.name=akka
project.version=1.1.2-SNAPSHOT
project.version=1.1.2
build.scala.versions=2.9.0-1
sbt.version=0.7.7
2 changes: 1 addition & 1 deletion scripts/run_akka.sh
@@ -1,6 +1,6 @@
#!/bin/bash
cd $AKKA_HOME
VERSION=1.1.2-SNAPSHOT
VERSION=1.1.2
TARGET_DIR=dist/$VERSION/$1
shift 1
VMARGS=$@
Expand Down

0 comments on commit e49017a

Please sign in to comment.