Skip to content

Commit

Permalink
version 0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
harrah committed Oct 1, 2012
1 parent 3bf8c5a commit 909d8d1
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -23,11 +23,11 @@ This is the 0.13.x series of sbt.
$ git clone git://github.com/harrah/xsbt.git
$ cd xsbt

3. The initial branch is the development branch 0.13, which contains the latest code for the next major sbt release. To build a specific release or commit, switch to the associated tag. The tag for the latest stable release is v0.12.0:
3. The initial branch is the development branch 0.13, which contains the latest code for the next major sbt release. To build a specific release or commit, switch to the associated tag. The tag for the latest stable release is v0.12.1:

$ git checkout v0.12.0
$ git checkout v0.12.1

Note that sbt is always built with the previous release. For example, the 0.12.0 branch is built with 0.12.0-M2, the v0.11.2 tag is built with 0.11.1, and the v0.11.0 tag is built with 0.10.1.
Note that sbt is always built with the previous release. For example, the 0.12.1 branch is built with 0.12.0, the v0.11.2 tag is built with 0.11.1, and the v0.11.0 tag is built with 0.10.1.

4. To build the launcher, publish all components locally, and build API and SXR documentation:

Expand All @@ -37,9 +37,9 @@ This is the 0.13.x series of sbt.

$ sbt publish-local proguard sxr doc

5. To use this locally built version of sbt, copy your stable ~/bin/sbt script to ~/bin/xsbt and change it to use the launcher jar in `<xsbt>/target/`. For the v0.12.0 tag, the full location is:
5. To use this locally built version of sbt, copy your stable ~/bin/sbt script to ~/bin/xsbt and change it to use the launcher jar in `<xsbt>/target/`. For the v0.12.1 tag, the full location is:

<xsbt>/target/sbt-launch-0.12.0.jar
<xsbt>/target/sbt-launch-0.12.1.jar

If using the 0.13 development branch, the launcher is at:

Expand Down
2 changes: 1 addition & 1 deletion project/Sbt.scala
Expand Up @@ -14,7 +14,7 @@ object Sbt extends Build
override lazy val settings = super.settings ++ buildSettings ++ Status.settings
def buildSettings = Seq(
organization := "org.scala-sbt",
version := "0.12.1-RC2",
version := "0.12.1",
publishArtifact in packageDoc := false,
scalaVersion := "2.9.2",
publishMavenStyle := false,
Expand Down
2 changes: 1 addition & 1 deletion src/main/conscript/sbt/launchconfig
Expand Up @@ -4,7 +4,7 @@
[app]
org: org.scala-sbt
name: sbt
version: read(sbt.version)[0.12.0]
version: read(sbt.version)[0.12.1]
class: ${sbt.main.class-sbt.xMain}
components: xsbti
cross-versioned: true
Expand Down
2 changes: 1 addition & 1 deletion src/main/conscript/scalas/launchconfig
Expand Up @@ -4,7 +4,7 @@
[app]
org: org.scala-sbt
name: sbt
version: 0.12.0
version: 0.12.1
class: sbt.ScriptMain
components: xsbti
cross-versioned: true
Expand Down
2 changes: 1 addition & 1 deletion src/main/conscript/screpl/launchconfig
Expand Up @@ -4,7 +4,7 @@
[app]
org: org.scala-sbt
name: sbt
version: 0.12.0
version: 0.12.1
class: sbt.ConsoleMain
components: xsbti
cross-versioned: true
Expand Down

0 comments on commit 909d8d1

Please sign in to comment.