aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-05-23 21:42:44 -0700
committerJakob Odersky <jakob@odersky.com>2016-05-23 21:42:44 -0700
commit605a44b7bfd7a1c20a6b737026aa7b21764acef8 (patch)
tree8346fabb668a4e0938e3cf66dc3ef1e0208d100c
parent24d77c088c011ccb17a831e256979cf90be005dd (diff)
downloadsbt-jni-605a44b7bfd7a1c20a6b737026aa7b21764acef8.tar.gz
sbt-jni-605a44b7bfd7a1c20a6b737026aa7b21764acef8.tar.bz2
sbt-jni-605a44b7bfd7a1c20a6b737026aa7b21764acef8.zip
bump version
-rw-r--r--README.md2
-rw-r--r--project/SbtJniBuild.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index de4e958..56e350f 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ The second point, portability, is inherent to JNI and thus unavoidable. However
All plugins are made available with the following sbt configuration
```scala
-addSbtPlugin("ch.jodersky" % "sbt-jni" % "1.0.0-RC2")
+addSbtPlugin("ch.jodersky" % "sbt-jni" % "1.0.0")
```
in `project/plugins.sbt`.
diff --git a/project/SbtJniBuild.scala b/project/SbtJniBuild.scala
index 1228915..2749ef4 100644
--- a/project/SbtJniBuild.scala
+++ b/project/SbtJniBuild.scala
@@ -14,7 +14,7 @@ object SbtJniBuild extends Build {
val macrosParadiseVersion = "2.1.0"
val commonSettings = Seq(
- version := "1.0.0",
+ version := "1.0.1-SNAPSHOT",
organization := "ch.jodersky",
licenses := Seq(("BSD New", url("http://opensource.org/licenses/BSD-3-Clause"))),
scalacOptions ++= Seq("-deprecation", "-feature"),