aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--project/FlowBuild.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index d9e4bf4..b0c5008 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ For a short guide on how to use flow see the file "documentation/basics.md", acc
Flow is built and its examples run with SBT. To get started, run `sbt flow/publish-local` to publish the library locally. From there on, you may use the library in any project simply by adding a library dependency to it.
- libraryDependencies += "com.github.jodersky" % "flow" % "1.0-SNAPSHOT"
+ libraryDependencies += "com.github.jodersky" % "flow" % "1.1-SNAPSHOT"
Examples on flow's usage are located in the flow-samples directory. The examples may be run by switching to the corresponding project in sbt: `project flow-samples-<sample_name>` and typing `run`. Be sure to connect a serial device before running an example.
diff --git a/project/FlowBuild.scala b/project/FlowBuild.scala
index 51e72f1..858eaeb 100644
--- a/project/FlowBuild.scala
+++ b/project/FlowBuild.scala
@@ -7,7 +7,7 @@ import JniKeys._
object FlowBuild extends Build {
val Organization = "com.github.jodersky"
- val Version = "1.0" //version of flow library
+ val Version = "1.1-SNAPSHOT" //version of flow library
val BinaryMajorVersion = 2 //binary major version used to select shared libraries when publishing (needs to be incremented if API changes are made to flow.h or NativeSerial.java)
val ScalaVersion = "2.10.2"
//see native settings down below