bump version

This commit is contained in:
Johannes Rudolph 2013-01-22 14:38:30 +01:00
parent f28b009b02
commit ed097ed2e2
5 changed files with 34 additions and 2 deletions

View File

@ -93,6 +93,7 @@ Credits
-------
* Matt Russell (@mdr) for contributing the ASCII graph layout.
* berleon (@berleon) for contributing rendering to dot.
License
-------

View File

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

View File

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

View File

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

29
src/main/ls/0.7.1.json Normal file
View File

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