Skip to content

Commit

Permalink
0.13.0-M1
Browse files Browse the repository at this point in the history
  • Loading branch information
harrah committed Mar 18, 2013
1 parent 26d422f commit 1ea9c5c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Expand Up @@ -35,11 +35,11 @@ See below for details on getting sbt sources and modifying the documentation.
$ git clone git://github.com/sbt/sbt.git
$ cd sbt

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:
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.2:

$ git checkout v0.12.1
$ git checkout v0.12.2

Note that sbt is always built with the previous stable release. For example, the 0.13 branch is built with 0.12.1, 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 stable release. For example, the 0.13 branch is built with 0.12.2, 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 documentation:

Expand All @@ -49,9 +49,9 @@ See below for details on getting sbt sources and modifying the documentation.

$ sbt publish-local proguard sxr doc sphinx:mappings

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 `<sbt>/target/`. For the v0.12.1 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 `<sbt>/target/`. For the v0.12.2 tag, the full location is:

<sbt>/target/sbt-launch-0.12.1.jar
<sbt>/target/sbt-launch-0.12.2.jar

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

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.13.0-SNAPSHOT]
version: read(sbt.version)[0.13.0-M1]
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.13.0-SNAPSHOT
version: 0.13.0-M1
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.13.0-SNAPSHOT
version: 0.13.0-M1
class: sbt.ConsoleMain
components: xsbti
cross-versioned: true
Expand Down
2 changes: 1 addition & 1 deletion src/sphinx/conf.py
Expand Up @@ -9,7 +9,7 @@

project = 'sbt'
version = '0.13'
release = '0.13.0-SNAPSHOT'
release = '0.13.0-M1'
scalaVersion = "2.10"
scalaRelease = "2.10.0"

Expand Down

0 comments on commit 1ea9c5c

Please sign in to comment.