From 2e3a8fa168b57004ef867481a5974c1f734484f1 Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Mon, 30 Mar 2015 08:12:31 +0200 Subject: [PATCH] bump version --- README.md | 4 ++-- notes/0.7.5.markdown | 10 ++++++++++ project.sbt | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 notes/0.7.5.markdown diff --git a/README.md b/README.md index 91320112e..2ca1beec6 100644 --- a/README.md +++ b/README.md @@ -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`: ```scala -addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.4") +addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.5") ``` Then, apply the plugin's settings in `~/.sbt/0.13/global.sbt`, the [global build configuration]: @@ -69,7 +69,7 @@ Standalone usage You can use the project without sbt as well by either depending on the library and calling `IvyGraphMLDependencies.saveAsGraphML(IvyGraphMLDependencies.graph(reportFile), outputFile)` or by just getting the binary -and calling it like `scala sbt-dependency-graph-0.7.4.jar `. +and calling it like `scala sbt-dependency-graph-0.7.5.jar `. Inner Workings -------------- diff --git a/notes/0.7.5.markdown b/notes/0.7.5.markdown new file mode 100644 index 000000000..fbb41457a --- /dev/null +++ b/notes/0.7.5.markdown @@ -0,0 +1,10 @@ +This is a maintenance release adding support for sbt 0.13.8. + +All changes: + + * [#67](https://github.com/jrudolph/sbt-dependency-graph/issues/67): Added support for sbt 0.13.8. Thanks + [@eed3si9n](https://github.com/eed3si9n) for the fix. + * [#37](https://github.com/jrudolph/sbt-dependency-graph/issues/37): Don't fail with StringIndexOutOfBoundsException + for deep trees. + * [#44](https://github.com/jrudolph/sbt-dependency-graph/issues/44): Only match scala lib by org/name. + Thanks [@2beaucoup](https://github.com/2beaucoup) for the fix. diff --git a/project.sbt b/project.sbt index 6320ebf46..8f3b981ab 100644 --- a/project.sbt +++ b/project.sbt @@ -4,7 +4,7 @@ name := "sbt-dependency-graph" organization := "net.virtual-void" -version := "0.7.5-SNAPSHOT" +version := "0.7.5" homepage := Some(url("http://github.com/jrudolph/sbt-dependency-graph"))