From b4eae629a67addede3c3bdfd33a0c4fe95a3247f Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Wed, 24 Jul 2019 08:18:01 +0200 Subject: [PATCH] Releasing 0.10.0-RC1 --- CHANGELOG.md | 5 ++++- README.md | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ca4bf054..bcd87ebbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ # Changelog -## Version 0.10.0 (unreleased) +## Version 0.10.0-RC1 (2019-07-24) * [#136](https://github.com/jrudolph/sbt-dependency-graph/pull/136): Added `dependencyBrowseTree` to open a searchable dependency tree in the browser. Thanks, [@pcejrowski](https://github.com/pcejrowski) for contributing this feature. + * [#163](https://github.com/jrudolph/sbt-dependency-graph/pull/163): Remove some usage of internal sbt APIs, this allows to run sbt-dependency-graph with sbt 1.3.0 + but results are not entirely correct. + * [#165](https://github.com/jrudolph/sbt-dependency-graph/pull/165): For common operations introduce `asString`, `printToConsole`, and `toFile` subtasks ## 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 diff --git a/README.md b/README.md index 62f5c06c7..e9a0b1cc4 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,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.2") +addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.10.0-RC1") ``` To add the plugin only to a single project, put this line into `project/plugins.sbt` of your project, instead.