mirror of https://github.com/sbt/sbt.git
Merge pull request #157 from jrudolph/release-0.9.1
Release notes for 0.9.1
This commit is contained in:
commit
90f6cedb34
|
|
@ -1,5 +1,10 @@
|
|||
# Changelog
|
||||
|
||||
## 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.
|
||||
* [#150](https://github.com/jrudolph/sbt-dependency-graph/issues/150): `ivyReport` now reports correct path again even for older sbt versions (< 0.13.16)
|
||||
|
||||
## Version 0.9.0 (2017-10-25)
|
||||
|
||||
This version (finally!) adds support for sbt 1.0. *sbt-dependency-graph* depends on a lot of internals from sbt to do its
|
||||
|
|
|
|||
|
|
@ -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.0")
|
||||
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.1")
|
||||
```
|
||||
|
||||
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