From 47eeb889fc3c58a8ee24f85e90ced0a983abde20 Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Fri, 4 Dec 2015 14:51:17 +0100 Subject: [PATCH] publish 0.8.0 --- README.md | 4 +++- notes/0.8.0.markdown | 12 ++++++++++++ publish.sbt | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 notes/0.8.0.markdown diff --git a/README.md b/README.md index 6404faf..d67e8d2 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,14 @@ be used with any Scala application as long as there is some object with a `main` _sbt-revolver_ requires [SBT] 0.13.x or greater. Add the following dependency to your `project/plugins.sbt`: ```scala -addSbtPlugin("io.spray" % "sbt-revolver" % "0.8.0-RC1") +addSbtPlugin("io.spray" % "sbt-revolver" % "0.8.0") ``` sbt-revolver is an auto plugin, so you don't need any additional configuration in your build.sbt nor in Build.scala to make it work. In multi-module builds it will be enabled for each module. +For older versions of sbt see version [0.7.2](https://github.com/spray/sbt-revolver/tree/571ca53a5a2d93764774bb87cd96dad0ad0547b3). + ## Usage _sbt-revolver_ defines three new commands (SBT tasks) in its own `re` configuration: diff --git a/notes/0.8.0.markdown b/notes/0.8.0.markdown new file mode 100644 index 0000000..0a63139 --- /dev/null +++ b/notes/0.8.0.markdown @@ -0,0 +1,12 @@ +sbt-revolver 0.8.0 is now an AutoPlugin. + +Other changes: + + - [#45][]: Added AutoPlugin support and dropped support for older sbt versions in the process, allowing some cleanup of the code. Thanks, [@alkersan][]! + - [#40][]: Removed RED color from list of colors. Thanks, [@jedesah](https://github.com/jedesah)! + - [#36][]: Fixed issue with JNI libraries by using Fork.java instead of Fork.scala. Thanks, [@kanterov](https://github.com/kanterov)! + + [#36]: https://github.com/spray/sbt-revolver/issues/36 + [#40]: https://github.com/spray/sbt-revolver/issues/40 + [#45]: https://github.com/spray/sbt-revolver/issues/45 + [@alkersan]: https://github.com/alkersan \ No newline at end of file diff --git a/publish.sbt b/publish.sbt index ba386b0..0454f9c 100644 --- a/publish.sbt +++ b/publish.sbt @@ -2,7 +2,7 @@ name := "sbt-revolver" organization := "io.spray" -version := "0.8.0-RC1" +version := "0.8.0" description := "An SBT plugin for dangerously fast development turnaround in Scala"