Skip to content

Commit

Permalink
Update version for release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rkuhn committed Dec 22, 2012
1 parent 368cc90 commit 315e183
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions akka-actor-tests/src/test/scala/akka/config/ConfigSpec.scala
Expand Up @@ -24,8 +24,8 @@ class ConfigSpec extends AkkaSpec(ConfigFactory.defaultReference(ActorSystem.fin
{
import config._

getString("akka.version") must equal("2.1-SNAPSHOT")
settings.ConfigVersion must equal("2.1-SNAPSHOT")
getString("akka.version") must equal("2.1.0")
settings.ConfigVersion must equal("2.1.0")

getBoolean("akka.daemonic") must equal(false)
getBoolean("akka.actor.serialize-messages") must equal(false)
Expand Down
2 changes: 1 addition & 1 deletion akka-actor/src/main/resources/reference.conf
Expand Up @@ -7,7 +7,7 @@

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

# 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
Expand Up @@ -23,7 +23,7 @@ import util.{ Failure, Success }

object ActorSystem {

val Version: String = "2.1-SNAPSHOT"
val Version: String = "2.1.0"

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
Expand Up @@ -2,7 +2,7 @@
Akka
====

This is the Akka 2.1-SNAPSHOT download.
This is the Akka 2.1.0 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
@@ -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.1-SNAPSHOT/
# For more info about config, please visit the Akka Documentation: http://akka.io/docs/akka/2.1.0/
4 changes: 2 additions & 2 deletions akka-samples/akka-sample-cluster/pom.xml
Expand Up @@ -7,7 +7,7 @@

<groupId>com.typesafe.akka</groupId>
<artifactId>akka-sample-cluster-experimental-japi</artifactId>
<version>2.1-SNAPSHOT</version>
<version>2.1.0</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -36,4 +36,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
4 changes: 2 additions & 2 deletions akka-sbt-plugin/sample/project/Build.scala
Expand Up @@ -6,7 +6,7 @@ import akka.sbt.AkkaKernelPlugin.{ Dist, outputDirectory, distJvmOptions}

object HelloKernelBuild extends Build {
val Organization = "akka.sample"
val Version = "2.1-SNAPSHOT"
val Version = "2.1.0"
val ScalaVersion = "2.10.0"

lazy val HelloKernel = Project(
Expand Down Expand Up @@ -49,7 +49,7 @@ object Dependencies {
object Dependency {
// Versions
object V {
val Akka = "2.1-SNAPSHOT"
val Akka = "2.1.0"
}

val akkaKernel = "com.typesafe.akka" %% "akka-kernel" % V.Akka
Expand Down
2 changes: 1 addition & 1 deletion akka-sbt-plugin/sample/project/plugins.sbt
@@ -1 +1 @@
addSbtPlugin("com.typesafe.akka" % "akka-sbt-plugin" % "2.1-SNAPSHOT")
addSbtPlugin("com.typesafe.akka" % "akka-sbt-plugin" % "2.1.0")
2 changes: 1 addition & 1 deletion project/AkkaBuild.scala
Expand Up @@ -28,7 +28,7 @@ object AkkaBuild extends Build {

lazy val buildSettings = Seq(
organization := "com.typesafe.akka",
version := "2.1-SNAPSHOT",
version := "2.1.0",
// Also change ScalaVersion in akka-sbt-plugin/sample/project/Build.scala
scalaVersion := System.getProperty("akka.scalaVersion", "2.10.0")
)
Expand Down

0 comments on commit 315e183

Please sign in to comment.