From 88f0699398f51e44149c7416cefc2ac301feeec3 Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Fri, 8 Jan 2016 18:38:20 +0100 Subject: [PATCH] bump version to 0.8.1 --- README.md | 2 +- notes/0.8.1.markdown | 9 +++++++++ project.sbt | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 notes/0.8.1.markdown diff --git a/README.md b/README.md index af98ed9ff..1002b3e4d 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,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.8.0") +addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.8.1") ``` To add the plugin only to a single project, put this line into `project/plugins.sbt` of your project, instead. diff --git a/notes/0.8.1.markdown b/notes/0.8.1.markdown new file mode 100644 index 000000000..83dc422bc --- /dev/null +++ b/notes/0.8.1.markdown @@ -0,0 +1,9 @@ +This is a maintenance fixing a regression in 0.8.0 and adding two small features. + +All changes: + + * [#84](https://github.com/jrudolph/sbt-dependency-graph/issues/84): Fix regression of DOT label rendering introduced in 0.8.0. + * [#83](https://github.com/jrudolph/sbt-dependency-graph/issues/83): Added new task `dependencyStats` which prints a + simple table of jar sizes for all your dependencies. Handy if you want to know why your assembled jar gets so big. + * [#85](https://github.com/jrudolph/sbt-dependency-graph/issues/85): Added new task `dependencyList` which prints a + flat, deduplicated list of all the transitive dependencies. \ No newline at end of file diff --git a/project.sbt b/project.sbt index 05275e95f..ce661fcca 100644 --- a/project.sbt +++ b/project.sbt @@ -4,7 +4,7 @@ name := "sbt-dependency-graph" organization := "net.virtual-void" -version := "0.8.1-SNAPSHOT" +version := "0.8.1" homepage := Some(url("http://github.com/jrudolph/sbt-dependency-graph"))