diff --git a/README.md b/README.md index 67cbf820d..4497c98cf 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,7 @@ Credits ------- * Matt Russell (@mdr) for contributing the ASCII graph layout. + * berleon (@berleon) for contributing rendering to dot. License ------- diff --git a/notes/0.7.1.markdown b/notes/0.7.1.markdown index c12b0e21a..dd7a66315 100644 --- a/notes/0.7.1.markdown +++ b/notes/0.7.1.markdown @@ -1,3 +1,5 @@ New features in this version: * `dependency-license-info`: show dependencies grouped by declared license + * `dependency-dot`: create dot file from dependency graph. Contributed by + [berleon](https://github.com/berleon). diff --git a/project.sbt b/project.sbt index c6ca6071d..f7800e769 100644 --- a/project.sbt +++ b/project.sbt @@ -4,7 +4,7 @@ name := "sbt-dependency-graph" organization := "net.virtual-void" -version := "0.7.1-SNAPSHOT" +version := "0.7.1" homepage := Some(url("http://github.com/jrudolph/sbt-dependency-graph")) diff --git a/project/plugins.sbt b/project/plugins.sbt index 23bdc1cdb..80dd7f871 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,4 +4,4 @@ addSbtPlugin("me.lessis" % "ls-sbt" % "0.1.2") resolvers += "Coda Hale's Repo" at "http://repo.codahale.com" -addSbtPlugin("net.virtual-void" % "sbt-cross-building" % "0.7.0-RC2") +addSbtPlugin("net.virtual-void" % "sbt-cross-building" % "0.7.0") diff --git a/src/main/ls/0.7.1.json b/src/main/ls/0.7.1.json new file mode 100644 index 000000000..846054dd4 --- /dev/null +++ b/src/main/ls/0.7.1.json @@ -0,0 +1,29 @@ +{ + "organization" : "net.virtual-void", + "name" : "sbt-dependency-graph", + "version" : "0.7.1", + "description" : "An sbt plugin to visualize dependencies of your build.", + "site" : "http://github.com/jrudolph/sbt-dependency-graph", + "tags" : [ "dependency", "graph", "sbt-plugin", "sbt" ], + "docs" : "http://github.com/jrudolph/sbt-dependency-graph", + "resolvers" : [ "https://oss.sonatype.org/content/repositories/releases" ], + "dependencies" : [ { + "organization" : "org.scala-sbt", + "name" : "scripted-sbt", + "version" : "0.12.0" + }, { + "organization" : "org.scala-sbt", + "name" : "sbt-launch", + "version" : "0.12.0" + }, { + "organization" : "com.github.mdr", + "name" : "ascii-graphs", + "version" : "0.0.2" + } ], + "scalas" : [ "2.9.2" ], + "licenses" : [ { + "name" : "Apache License 2.0", + "url" : "https://github.com/jrudolph/sbt-dependency-graph/raw/master/LICENSE" + } ], + "sbt" : true +}