diff --git a/README.md b/README.md index 81b4737..10ac8a7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# SBT-RELEASE +# sbt-release This sbt plugin provides a customizable release process that you can add to your project. **Notice:** This README contains information for the latest release. Please refer to the documents for a specific version by looking up the respective [tag](https://github.com/sbt/sbt-release/tags). @@ -26,7 +26,7 @@ This sbt plugin provides a customizable release process that you can add to your Add the following lines to `./project/plugins.sbt`. See the section [Using Plugins](http://www.scala-sbt.org/release/tutorial/Using-Plugins.html) in the sbt wiki for more information. - addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.4") + addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.5") ## version.sbt diff --git a/notes/1.0.5.markdown b/notes/1.0.5.markdown new file mode 100644 index 0000000..975c205 --- /dev/null +++ b/notes/1.0.5.markdown @@ -0,0 +1,9 @@ +* [#193][] The `checkSnapshotDependencies` release step now has `enabledCrossBuild` enabled by default. +* [#185][] Adds a `default-tag-exists-answer` option to the `release` command to customise the default response to a tag already existing in the `tagRelease` release step. +* [#194][] Makes `releaseVersion`, `releaseNextVersion`, and `releaseVersionBump` task keys instead of setting keys. + +[v1.0.4...v1.0.5](https://github.com/sbt/sbt-release/compare/v1.0.4%E2%80%A6v1.0.5) + +[#193]: https://github.com/sbt/sbt-release/pull/193 +[#185]: https://github.com/sbt/sbt-release/pull/185 +[#194]: https://github.com/sbt/sbt-release/pull/194