From 553dffec39d9958d65a747f457456e4bff4e6f9c Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Wed, 19 Aug 2015 12:12:14 +0100 Subject: [PATCH] Upgrade to 0.13.9. --- CONTRIBUTING.md | 2 +- build.sbt | 25 ++++++++----------------- project/build.properties | 2 +- 3 files changed, 10 insertions(+), 19 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 88cba9758..31daacd87 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -118,7 +118,7 @@ Build from source $ git checkout v0.13.9 - Note that sbt is always built with the previous stable release. For example, the [0.13](https://github.com/sbt/sbt/tree/0.13) branch is built with 0.13.8 and the [v0.13.8](https://github.com/sbt/sbt/tree/v0.13.8) tag is built with 0.13.8. + Note that sbt is always built with the previous stable release. For example, the [0.13](https://github.com/sbt/sbt/tree/0.13) branch is built with 0.13.9 and the [v0.13.9](https://github.com/sbt/sbt/tree/v0.13.9) tag is built with 0.13.8. 4. To build the launcher and publish all components locally, diff --git a/build.sbt b/build.sbt index cdf634fe3..46aad7661 100644 --- a/build.sbt +++ b/build.sbt @@ -1,27 +1,18 @@ -import Project.Initialize import Util._ import Dependencies._ -import Licensed._ -import Scope.ThisScope import Scripted._ -import StringUtilities.normalize import Sxr.sxr // ThisBuild settings take lower precedence, // but can be shared across the multi projects. -def buildLevelSettings: Seq[Setting[_]] = Seq( - organization in ThisBuild := "org.scala-sbt", - version in ThisBuild := "0.13.10-SNAPSHOT", - // bintrayOrganization in ThisBuild := None, - // bintrayRepository in ThisBuild := "test-test-test", - bintrayOrganization in ThisBuild := { - if ((publishStatus in ThisBuild).value == "releases") Some("typesafe") - else Some("sbt") - }, - bintrayRepository in ThisBuild := s"ivy-${(publishStatus in ThisBuild).value}", - bintrayPackage in ThisBuild := "sbt", - bintrayReleaseOnPublish in ThisBuild := false -) +def buildLevelSettings: Seq[Setting[_]] = inThisBuild(Seq( + organization := "org.scala-sbt", + version := "0.13.10-SNAPSHOT", + bintrayOrganization := Some(if (publishStatus.value == "releases") "typesafe" else "sbt"), + bintrayRepository := s"ivy-${publishStatus.value}", + bintrayPackage := "sbt", + bintrayReleaseOnPublish := false +)) def commonSettings: Seq[Setting[_]] = Seq( scalaVersion := scala210, diff --git a/project/build.properties b/project/build.properties index a6e117b61..817bc38df 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=0.13.8 +sbt.version=0.13.9