From 1876561e6ed6e2b1e06586f3b87c092177be4d44 Mon Sep 17 00:00:00 2001 From: Roman Timushev Date: Sun, 23 Nov 2014 18:18:17 +0300 Subject: [PATCH] Release 0.1.7 preparation --- README.md | 4 ++-- build.sbt | 2 +- notes/0.1.7.markdown | 13 +++++++++++++ src/main/ls/0.1.7.json | 21 +++++++++++++++++++++ 4 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 notes/0.1.7.markdown create mode 100644 src/main/ls/0.1.7.json diff --git a/README.md b/README.md index fa937aed..f6640e33 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add the following line to one of these files: - Your global file (for sbt version 0.13.x) at `~/.sbt/0.13/plugins/sbt-updates.sbt` ``` -addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.6") +addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.7") ``` ### Snapshot version @@ -27,7 +27,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.7-SNAPSHOT") +addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.8-SNAPSHOT") ``` Tasks diff --git a/build.sbt b/build.sbt index e56383e7..c24020f8 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ name := "sbt-updates" organization := "com.timushev.sbt" -version := "0.1.7-SNAPSHOT" +version := "0.1.7" scalacOptions := Seq("-deprecation", "-unchecked") diff --git a/notes/0.1.7.markdown b/notes/0.1.7.markdown new file mode 100644 index 00000000..7d051078 --- /dev/null +++ b/notes/0.1.7.markdown @@ -0,0 +1,13 @@ +sbt-updates 0.1.7 has been released: + + * Significantly improved plugin performance in multi-project builds + * Option to fail a build if updates found + * Dropped SBT 0.12.x compatibility + +Example: + + > dependencyUpdates + [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.7.json b/src/main/ls/0.1.7.json new file mode 100644 index 00000000..23f66309 --- /dev/null +++ b/src/main/ls/0.1.7.json @@ -0,0 +1,21 @@ +{ + "organization" : "com.timushev.sbt", + "name" : "sbt-updates", + "version" : "0.1.7", + "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.4" ], + "licenses": [{ + "name" : "BSD-3-Clause", + "url" : "https://github.com/rtimush/sbt-updates/blob/master/LICENSE" + }], + "sbt" : true +}