This commit is contained in:
Eugene Yokota 2018-01-31 14:33:31 -05:00
parent 47f8641f7b
commit 3972b7a3fc
2 changed files with 4 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import Sxr.sxr
// but can be shared across the multi projects.
def buildLevelSettings: Seq[Setting[_]] = inThisBuild(Seq(
organization := "org.scala-sbt",
version := "0.13.16-SNAPSHOT",
version := "0.13.17",
bintrayOrganization := Some(if (publishStatus.value == "releases") "typesafe" else "sbt"),
bintrayRepository := s"ivy-${publishStatus.value}",
bintrayPackage := "sbt",

View File

@ -8,6 +8,7 @@
- Fixes over-compilation on Java 9 `scala.ext.dir`. [#3142][3142]/[#3701][3701] by [@retronym][@retronym]
- Fixes `addSbtPlugin` to use the correct version of sbt. [#3393][3393]/[#3397][3397] by [@dwijnand][@dwijnand]
- Changes the tuple enrichment deprecation warning messages. [#3455][3455] by [@olafurpg][@olafurpg]
- Fixes `addCompilerPlugin(...)` so it can consume compiler plugins published to Ivy repository using sbt 1.x. [#3784][3784]/[#3855][3855] by [@eed3si9n][@eed3si9n]
### Internal
@ -30,3 +31,5 @@
[2156]: https://github.com/sbt/sbt/issues/2156
[3834]: https://github.com/sbt/sbt/pull/3834
[3848]: https://github.com/sbt/sbt/pull/3848
[3784]: https://github.com/sbt/sbt/issues/3784
[3855]: https://github.com/sbt/sbt/pull/3855