Skip to content

Commit 190ec7c

Browse files
committed
Update version numbers for next release.
1 parent 4cac88f commit 190ec7c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ The main task is `ijRun` it packages the ImageJ plugin and helps test the plugin
1616
The other task `ijPrepareRun` is intended for integration with IDEs, like IntelliJ IDEA and Eclipse.
1717
See also blog post [Developing ImageJ plugins with SBT using sbt-imagej](https://codingonthestaircase.wordpress.com/2014/11/23/developing-imagej-plugins-with-sbt-using-sbt-imagej/).
1818

19-
`sbt-imagej` requires SBT 0.13.5 or newer.
19+
`sbt-imagej` requires SBT 1.0 or newer.
2020

2121
Usage
2222
-----
2323

2424
Add `sbt-imagej` as a dependency in `project/imagej.sbt`:
2525

2626
```scala
27-
addSbtPlugin("net.sf.ij-plugins" % "sbt-imagej" % "2.0.1")
27+
addSbtPlugin("net.sf.ij-plugins" % "sbt-imagej" % "2.1.0")
2828
```
2929

3030
Once added to the project the plugin will be enabled by default.

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sbtPlugin := true
44

55
name := "sbt-imagej"
66
organization := "net.sf.ij-plugins"
7-
version := "2.0.2-SNAPSHOT"
7+
version := "2.1.0"
88
description := "SBT plugin that helps create runtime directory structure for ImageJ plugin development."
99
homepage := Some(url("http://github.com/jpsacha/sbt-imagej"))
1010
organizationHomepage := Some(url("http://ij-plugins.sf.net"))

example/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "sbt-imagej-example"
22
organization := "ij-plugins.sf.net"
3-
version := "2.0.1"
3+
version := "2.1.0"
44

55
scalaVersion := "2.12.8"
66

example/project/plugin.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
22

3-
addSbtPlugin("net.sf.ij-plugins" % "sbt-imagej" % "2.0.2-SNAPSHOT")
3+
addSbtPlugin("net.sf.ij-plugins" % "sbt-imagej" % "2.1.0")

0 commit comments

Comments
 (0)