Prepare 0.9.2

This commit is contained in:
Johannes Rudolph 2018-08-26 19:18:59 +02:00
parent e4943b2163
commit 5ef1db0a9d
No known key found for this signature in database
GPG Key ID: 4D293A24CCD39E19
3 changed files with 10 additions and 12 deletions

View File

@ -1,5 +1,8 @@
# Changelog
## Version 0.9.2 (2018-08-26)
* [#159](https://github.com/jrudolph/sbt-dependency-graph/pull/159): Fixed regression in `whatDependsOn` where task parser failed when no other sbt-dependency-graph task was called before
## Version 0.9.1 (2018-07-17)
* [#110](https://github.com/jrudolph/sbt-dependency-graph/issues/110): `whatDependsOn` can now be called without specifying a version. Thanks, @chikei for the initial implementation.

View File

@ -1,17 +1,12 @@
Before publishing:
* update version in project.sbt
* create entry in CHANGELOG
* update version in README
* update plugins.sbt in scripted tests
* run `^ scripted` to run all tests
* run `;^ clean; ^ test:compile; ^ test; ^ scripted; ^publishSigned`
* run `^ publish'
* test staged version in sonatype
* release from sonatype
After publishing:
* create tag (+ push)
* update versions in README (2 occurences currently)
* update example project (+ push)
* use `ls-write-version`
* lsync
* update to next snapshot version
* push master and tags

View File

@ -11,7 +11,7 @@ install it as a [global plugin] so that you can use it in any SBT project withou
this, add the plugin dependency to `~/.sbt/0.13/plugins/plugins.sbt` for sbt 0.13 or `~/.sbt/1.0/plugins/plugins.sbt` for sbt 1.0:
```scala
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.1")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.2")
```
To add the plugin only to a single project, put this line into `project/plugins.sbt` of your project, instead.