aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-01-24 17:54:28 -0800
committerJakob Odersky <jakob@odersky.com>2016-01-24 17:54:28 -0800
commite69aa34a91f314ec12d4b6fec4848e81043e3d97 (patch)
treef2d384f89db95f7c0fead41deb9972c67be44f20
parentd15602f43f128cc68f31257ba94a6a1613f15f24 (diff)
downloadsbt-jni-e69aa34a91f314ec12d4b6fec4848e81043e3d97.tar.gz
sbt-jni-e69aa34a91f314ec12d4b6fec4848e81043e3d97.tar.bz2
sbt-jni-e69aa34a91f314ec12d4b6fec4848e81043e3d97.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 6305fe3..0ddd2a0 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.1")
+addSbtPlugin("ch.jodersky" % "sbt-jni" % "0.4.2")
```
Define sub-projects for JVM and native sources. In `myproject/build.sbt`:
diff --git a/project/Build.scala b/project/Build.scala
index ec3c19f..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.2",
+ version := "0.4.2-SNAPSHOT",
organization := "ch.jodersky",
licenses := Seq(("BSD New", url("http://opensource.org/licenses/BSD-3-Clause"))),
scalacOptions ++= Seq("-deprecation", "-feature")