mirror of https://github.com/sbt/sbt.git
Add changelog entry for dependencyBrowseTree and move it a bit down in documentation
This commit is contained in:
parent
83d3e3a5df
commit
2836f83286
|
|
@ -1,5 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
## Version 0.10.0 (unreleased)
|
||||
* [#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.
|
||||
|
||||
## 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
|
||||
|
||||
|
|
|
|||
|
|
@ -21,9 +21,9 @@ the notes of version [0.8.2](https://github.com/jrudolph/sbt-dependency-graph/tr
|
|||
|
||||
## Main Tasks
|
||||
|
||||
* `dependencyBrowseTree`: Opens a browser window with a visualization of the dependency tree (courtesy of jstree).
|
||||
* `dependencyTree`: Shows an ASCII tree representation of the project's dependencies
|
||||
* `dependencyBrowseGraph`: Opens a browser window with a visualization of the dependency graph (courtesy of graphlib-dot + dagre-d3).
|
||||
* `dependencyBrowseTree`: Opens a browser window with a visualization of the dependency tree (courtesy of jstree).
|
||||
* `dependencyList`: Shows a flat list of all transitive dependencies on the sbt console (sorted by organization and name)
|
||||
* `whatDependsOn <organization> <module> <revision>?`: Find out what depends on an artifact. Shows a reverse dependency
|
||||
tree for the selected module. The `<revision>` argument is optional.
|
||||
|
|
|
|||
Loading…
Reference in New Issue