bump version

This commit is contained in:
Johannes Rudolph 2015-03-30 08:12:31 +02:00
parent 76fed827f6
commit 2e3a8fa168
3 changed files with 13 additions and 3 deletions

View File

@ -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 <ivy-report-xml-path> <target-path>`.
and calling it like `scala sbt-dependency-graph-0.7.5.jar <ivy-report-xml-path> <target-path>`.
Inner Workings
--------------

10
notes/0.7.5.markdown Normal file
View File

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

View File

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