From 63e047d3d7a3ce2a15a627551690279a5adaf905 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Wed, 14 Mar 2012 20:39:02 -0400 Subject: [PATCH] 0.12.0-M2 --- README.md | 10 +++++----- project/Sbt.scala | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 545b9da30..efeee8c0f 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,11 @@ This is the 0.11.x series of sbt (soon to be 0.12.x). $ git clone git://github.com/harrah/xsbt.git $ cd xsbt -3. The initial branch is the development branch 0.12, which contains the latest code for the 0.12.x series. To build a specific release or commit, switch to the associated tag. The tag for the latest stable release is v0.12.0-M1: +3. The initial branch is the development branch 0.12, which contains the latest code for the 0.12.x series. To build a specific release or commit, switch to the associated tag. The tag for the latest stable release is v0.12.0-M2: - $ git checkout v0.12.0-M1 + $ git checkout v0.12.0-M2 - Note that sbt is always built with the previous stable release. For example, the 0.12 branch is built with 0.12.0-M1, 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.12 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. 4. To build the launcher, publish all components locally, and build API and SXR documentation: @@ -37,9 +37,9 @@ This is the 0.11.x series of sbt (soon to be 0.12.x). $ 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 `/target/`. For the v0.12.0-M1 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 `/target/`. For the v0.12.0-M2 tag, the full location is: - /target/sbt-launch-0.12.0-M1.jar + /target/sbt-launch-0.12.0-M2.jar If using the 0.12 development branch, the launcher is at: diff --git a/project/Sbt.scala b/project/Sbt.scala index f3a48ab52..1f109f2a4 100644 --- a/project/Sbt.scala +++ b/project/Sbt.scala @@ -15,7 +15,7 @@ object Sbt extends Build override lazy val settings = super.settings ++ buildSettings ++ Status.settings def buildSettings = Seq( organization := "org.scala-sbt", - version := "0.12.0-SNAPSHOT", + version := "0.12.0-M2", publishArtifact in packageDoc := false, scalaVersion := "2.9.1", publishMavenStyle := false,