Skip to content

Commit

Permalink
Release 0.1.7 preparation
Browse files Browse the repository at this point in the history
  • Loading branch information
rtimush committed Nov 23, 2014
1 parent 5aee2b4 commit 1876561
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name := "sbt-updates"

organization := "com.timushev.sbt"

version := "0.1.7-SNAPSHOT"
version := "0.1.7"

scalacOptions := Seq("-deprecation", "-unchecked")

Expand Down
13 changes: 13 additions & 0 deletions notes/0.1.7.markdown
Original file line number Diff line number Diff line change
@@ -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
21 changes: 21 additions & 0 deletions src/main/ls/0.1.7.json
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit 1876561

Please sign in to comment.