diff --git a/README.md b/README.md index fe9f4651..46b3e03d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add the following line to one of these files: - Your global file (for sbt versions earlier than 0.13) at `~/.sbt/plugins/sbt-updates.sbt` ``` -addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.5") +addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.6") ``` ### Snapshot version @@ -29,7 +29,7 @@ Add the following lines to one of these files: ``` resolvers += Resolver.url("sbt-plugin-snapshots", url("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-snapshots"))(Resolver.ivyStylePatterns) -addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.6-SNAPSHOT") +addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.7-SNAPSHOT") ``` Tasks diff --git a/build.sbt b/build.sbt index 12a08a57..26676ffd 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ name := "sbt-updates" organization := "com.timushev.sbt" -version := "0.1.6-SNAPSHOT" +version := "0.1.6" scalacOptions := Seq("-deprecation", "-unchecked") diff --git a/notes/0.1.6.markdown b/notes/0.1.6.markdown new file mode 100644 index 00000000..a9a0e4f0 --- /dev/null +++ b/notes/0.1.6.markdown @@ -0,0 +1,11 @@ +sbt-updates 0.1.6 has been released: + + * Fixed a bug with long numeric versions parsing. + +Example: + + > dependency-updates + [info] Found 3 dependency updates for test-project + [info] ch.qos.logback:logback-classic : 0.8 -> 0.8.1 -> 0.9.30 -> 1.0.13 + [info] org.scala-lang:scala-library : 2.9.1 -> 2.9.3 -> 2.10.3 + [info] org.slf4j:slf4j-api : 1.6.4 -> 1.6.6 -> 1.7.5 diff --git a/src/main/ls/0.1.6.json b/src/main/ls/0.1.6.json new file mode 100644 index 00000000..8b210110 --- /dev/null +++ b/src/main/ls/0.1.6.json @@ -0,0 +1,18 @@ +{ + "organization" : "com.timushev.sbt", + "name" : "sbt-updates", + "version" : "0.1.6", + "description" : "Display your project's dependency updates.", + "site" : "", + "tags" : [ "sbt", "dependencies" ], + "docs" : "", + "resolvers" : [ "https://oss.sonatype.org/content/repositories/releases" ], + "dependencies" : [ { + "organization" : "org.scala-sbt", + "name" : "sbt-launch", + "version" : "0.13.0" + } ], + "scalas" : [ "2.10.3" ], + "licenses" : [ ], + "sbt" : true +}