Add changelog entry for dependencyBrowseTree and move it a bit down in documentation

This commit is contained in:
Johannes Rudolph 2018-09-14 14:33:04 +02:00
parent 83d3e3a5df
commit 2836f83286
No known key found for this signature in database
GPG Key ID: 4D293A24CCD39E19
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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.