mirror of https://github.com/sbt/sbt.git
Releasing 0.10.0-RC1
This commit is contained in:
parent
6e8ab67219
commit
b4eae629a6
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue