From 5ef1db0a9d3c002a46d0b41b22a2b02d2ed69c67 Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Sun, 26 Aug 2018 19:18:59 +0200 Subject: [PATCH] Prepare 0.9.2 --- CHANGELOG.md | 3 +++ PUBLISHING | 17 ++++++----------- README.md | 2 +- 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 887e050c6..b8c81ffda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/PUBLISHING b/PUBLISHING index 06008ee6d..1f728acbf 100644 --- a/PUBLISHING +++ b/PUBLISHING @@ -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 diff --git a/README.md b/README.md index 54f981a73..255a12b38 100644 --- a/README.md +++ b/README.md @@ -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.