From 21ccad21096d66100017aa552ab704c007200822 Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Thu, 26 Nov 2015 14:32:22 +0100 Subject: [PATCH] fix notes --- notes/0.8.0.markdown | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/notes/0.8.0.markdown b/notes/0.8.0.markdown index 7251f0e2c..c8b76a665 100644 --- a/notes/0.8.0.markdown +++ b/notes/0.8.0.markdown @@ -1,15 +1,20 @@ -This is a major release which brings a few breaking changes. +sbt-dependency-graph is finally an AutoPlugin and learned to render graph in the browser. -New features: +## New features - - (experimental) open dependency graph directly in the browser with `dependencyBrowseGraph` ([#24](https://github.com/jrudolph/sbt-dependency-graph/issues/24)) + - (experimental) open dependency graph directly in the browser with `dependencyBrowseGraph` ([#29](https://github.com/jrudolph/sbt-dependency-graph/issues/29)) + ![dependencyBrowseGraph in action](https://gist.githubusercontent.com/jrudolph/941754bcf67a0fafe495/raw/7d80d766feb7af6ba2a69494e1f3ceb1fd40d4da/Screenshot%2520from%25202015-11-26%252014:18:19.png) -Other changes: + - this plugin is finally an sbt AutoPlugin and it is automatically enabled + ([#51](https://github.com/jrudolph/sbt-dependency-graph/issues/51)) + +**Note: To update remove the `net.virtualvoid.sbt.graph.Plugin.graphSettings` line from your configurations.** + +## Other changes - - this plugin is now an auto-plugin and it is automatically enabled ([#51](https://github.com/jrudolph/sbt-dependency-graph/issues/51)) - a new backend was implemented which accesses the in-memory dependency data structures of sbt directly. The plugin doesn't require accessing the ivy report XML any more (the old backend can still be wired in for comparisons if needed) which should have solved the race condition and the dreaded `FileNotFoundException` ([#39](https://github.com/jrudolph/sbt-dependency-graph/issues/39)) in multi-module projects. The new backend is only used for sbt >= 0.13.6. - code was restructured which touched a lot of the classes but didn't change the function or syntax of settings and tasks. - - [fixed #77](https://github.com/jrudolph/sbt-dependency-graph/issues/77) \ No newline at end of file + - fixed [#77](https://github.com/jrudolph/sbt-dependency-graph/issues/77)