Skip to content

Commit

Permalink
0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
harrah committed Dec 10, 2013
1 parent 2ec7d3a commit 7fefdb7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions CONTRIBUTING.md
Expand Up @@ -38,11 +38,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.13.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.13.1:

$ git checkout v0.13.0
$ git checkout v0.13.1

Note that sbt is always built with the previous stable release. For example, the 0.13 branch is built with 0.13.0 and the v0.13.0 tag is built with 0.12.4.
Note that sbt is always built with the previous stable release. For example, the 0.13 branch is built with 0.13.1 and the v0.13.1 tag is built with 0.13.0.

4. To build the launcher and publish all components locally,

Expand All @@ -55,13 +55,13 @@ See below for details on getting sbt sources and modifying the documentation.
> sphinx:mappings
> sxr

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

<sbt>/target/sbt-launch-0.13.0.jar
<sbt>/target/sbt-launch-0.13.1.jar

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

<sbt>/target/sbt-launch-0.13.1-SNAPSHOT.jar
<sbt>/target/sbt-launch-0.13.2-SNAPSHOT.jar

## Modifying sbt

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

3. After each `publishLocal`, clean the `~/.sbt/boot/` directory. Alternatively, if sbt is running and the launcher hasn't changed, run `reboot full` to have sbt do this for you.

4. If a project has `project/build.properties` defined, either delete the file or change `sbt.version` to `0.13.1-SNAPSHOT`.
4. If a project has `project/build.properties` defined, either delete the file or change `sbt.version` to `0.13.2-SNAPSHOT`.

## Building Documentation

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 ++ nightlySettings
def buildSettings = Seq(
organization := "org.scala-sbt",
version := "0.13.1-RC5",
version := "0.13.1",
publishArtifact in packageDoc := false,
scalaVersion := "2.10.3",
publishMavenStyle := false,
Expand Down
2 changes: 1 addition & 1 deletion src/main/conscript/sbt/launchconfig
Expand Up @@ -4,7 +4,7 @@
[app]
org: ${sbt.organization-org.scala-sbt}
name: sbt
version: ${sbt.version-read(sbt.version)[0.13.1-RC5]}
version: ${sbt.version-read(sbt.version)[0.13.1]}
class: sbt.xMain
components: xsbti,extra
cross-versioned: ${sbt.cross.versioned-false}
Expand Down
2 changes: 1 addition & 1 deletion src/main/conscript/scalas/launchconfig
Expand Up @@ -4,7 +4,7 @@
[app]
org: ${sbt.organization-org.scala-sbt}
name: sbt
version: ${sbt.version-read(sbt.version)[0.13.1-RC5]}
version: ${sbt.version-read(sbt.version)[0.13.1]}
class: sbt.ScriptMain
components: xsbti,extra
cross-versioned: ${sbt.cross.versioned-false}
Expand Down
2 changes: 1 addition & 1 deletion src/main/conscript/screpl/launchconfig
Expand Up @@ -4,7 +4,7 @@
[app]
org: ${sbt.organization-org.scala-sbt}
name: sbt
version: ${sbt.version-read(sbt.version)[0.13.1-RC5]}
version: ${sbt.version-read(sbt.version)[0.13.1]}
class: sbt.ConsoleMain
components: xsbti,extra
cross-versioned: ${sbt.cross.versioned-false}
Expand Down

0 comments on commit 7fefdb7

Please sign in to comment.