aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-01-24 16:18:25 -0800
committerJakob Odersky <jakob@odersky.com>2016-01-24 16:18:25 -0800
commitd00ae8a98ef24c8e30b89e0e31180a91d98e533a (patch)
tree3de7c99f8f04171a96f60463eb379cf46d19a3d9
parent188bc10d08f70daabc807559e7600ab547884c93 (diff)
downloadsbt-jni-d00ae8a98ef24c8e30b89e0e31180a91d98e533a.tar.gz
sbt-jni-d00ae8a98ef24c8e30b89e0e31180a91d98e533a.tar.bz2
sbt-jni-d00ae8a98ef24c8e30b89e0e31180a91d98e533a.zip
bump version
-rw-r--r--README.md2
-rw-r--r--project/Build.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 4654b58..6305fe3 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ The reason for dividing a project into two subprojects is two-fold: it enables f
## Usage
Add plugin dependency. In `project/plugins.sbt`:
```scala
-addSbtPlugin("ch.jodersky" % "sbt-jni" % "0.4.0")
+addSbtPlugin("ch.jodersky" % "sbt-jni" % "0.4.1")
```
Define sub-projects for JVM and native sources. In `myproject/build.sbt`:
diff --git a/project/Build.scala b/project/Build.scala
index 40c6a19..fce483e 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -9,7 +9,7 @@ object JniBuild extends Build {
val scalaVersions = List("2.11.7", "2.12.0-M3", "2.10.5")
val commonSettings = Seq(
- version := "0.4.1",
+ version := "0.4.2-SNAPSHOT",
organization := "ch.jodersky",
licenses := Seq(("BSD New", url("http://opensource.org/licenses/BSD-3-Clause"))),
scalacOptions ++= Seq("-deprecation", "-feature")