Skip to content

Commit

Permalink
Update version for release 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlugter committed May 11, 2011
1 parent f99aef7 commit 68a584c
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
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-SNAPSHOT"))
getString("akka.version") must equal(Some("1.1"))

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
Original file line number Diff line number Diff line change
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-SNAPSHOT"
val VERSION = "1.1"

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

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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project.organization=se.scalablesolutions.akka
project.name=akka-tutorial-first
project.version=1.1-SNAPSHOT
project.version=1.1
build.scala.versions=2.9.0
sbt.version=0.7.6
Original file line number Diff line number Diff line change
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-SNAPSHOT"
val akkaPlugin = "se.scalablesolutions.akka" % "akka-sbt-plugin" % "1.1"
}
4 changes: 2 additions & 2 deletions akka-tutorials/akka-tutorial-second/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<groupId>akka.tutorial.second.java</groupId>
<artifactId>akka-tutorial-second-java</artifactId>
<packaging>jar</packaging>
<version>1.1-SNAPSHOT</version>
<version>1.1</version>
<url>http://akka.io</url>

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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project.organization=se.scalablesolutions.akka
project.name=akka-tutorial-second
project.version=1.1-SNAPSHOT
project.version=1.1
build.scala.versions=2.9.0
sbt.version=0.7.6
Original file line number Diff line number Diff line change
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-SNAPSHOT"
val akkaPlugin = "se.scalablesolutions.akka" % "akka-sbt-plugin" % "1.1"
}
2 changes: 1 addition & 1 deletion config/akka-reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Modify as needed.

akka {
version = "1.1-SNAPSHOT" # Akka version, checked against the runtime version of Akka.
version = "1.1" # 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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project.organization=se.scalablesolutions.akka
project.name=akka
project.version=1.1-SNAPSHOT
project.version=1.1
build.scala.versions=2.9.0
sbt.version=0.7.6
4 changes: 2 additions & 2 deletions scripts/run_akka.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
cd $AKKA_HOME
VERSION=1.1-SNAPSHOT
VERSION=1.1
TARGET_DIR=dist/$VERSION/$1
shift 1
VMARGS=$@
Expand All @@ -13,4 +13,4 @@ else
fi

export AKKA_HOME=`pwd`
java -jar ${VMARGS} ${VERSION}.jar
java -jar ${VMARGS} ${VERSION}.jar

0 comments on commit 68a584c

Please sign in to comment.