aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2013-08-05 00:02:02 +0200
committerJakob Odersky <jodersky@gmail.com>2013-08-05 00:02:02 +0200
commit75852fb329a61c41408f074daca0e5bcf2e1b38c (patch)
treef5ec64118f6e95cd2efa2670ab20bef774f336f2
parent45bba9e2944e270802f0f71784afc9578856017e (diff)
downloadakka-serial-75852fb329a61c41408f074daca0e5bcf2e1b38c.tar.gz
akka-serial-75852fb329a61c41408f074daca0e5bcf2e1b38c.tar.bz2
akka-serial-75852fb329a61c41408f074daca0e5bcf2e1b38c.zip
update version
-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