aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2014-04-01 19:33:12 +0200
committerJakob Odersky <jodersky@gmail.com>2014-04-01 20:08:55 +0200
commitf64408573bd408c7831999566dbb614a607aab41 (patch)
tree809e3bba0d216cdc6de6013dec7a566a9ffd39bd
parentb24fe0fd3c1bd033070e1e1c7d80e867094fdf61 (diff)
downloadakka-serial-f64408573bd408c7831999566dbb614a607aab41.tar.gz
akka-serial-f64408573bd408c7831999566dbb614a607aab41.tar.bz2
akka-serial-f64408573bd408c7831999566dbb614a607aab41.zip
update versionv1.2.1
-rw-r--r--README.md4
-rw-r--r--project/FlowBuild.scala4
2 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index ffed4ba..c7d4daf 100644
--- a/README.md
+++ b/README.md
@@ -9,13 +9,13 @@ For a short guide on how to use flow see the file [documentation/basics.md](docu
Flow is built and its examples run with SBT. To get started, include a dependency to flow in your project:
- libraryDependencies += "com.github.jodersky" %% "flow" % "1.2.0"
+ libraryDependencies += "com.github.jodersky" %% "flow" % "1.2.1"
ATTENTION: flow uses native libraries to back serial communication, therefore before you can run any application depending on flow you must include flow's native library! To do so, you have two options.
1. The easy way: add a second dependency to your project: (this dependency is not available on maven, please run ```flow-pack/publishLocal``` before)
- libraryDependencies += "com.github.jodersky" %% "flow-pack" % "1.2.0"
+ libraryDependencies += "com.github.jodersky" %% "flow-pack" % "1.2.1"
This will add a jar to your classpath containing native libraries for various platforms. At run time, the correct library for the current platform is selected, extracted and loaded. This solution enables running applications seamlessly, as if they were pure JVM applications. However, since the JVM does not enable full determination of the current platform (only OS and rough architecture are known), only a couple of platforms are supported through this solution. Currently, these are given in the table below.
diff --git a/project/FlowBuild.scala b/project/FlowBuild.scala
index 5638243..fc1997e 100644
--- a/project/FlowBuild.scala
+++ b/project/FlowBuild.scala
@@ -7,9 +7,9 @@ import NativePackKeys._
object FlowBuild extends Build {
val Organization = "com.github.jodersky"
val ScalaVersion = "2.10.3"
- val Version = "1.2.0" //version of flow library
+ val Version = "1.2.1" //version of flow library
val NativeMajorVersion = 2 //major version of native API
- val NativeMinorVersionPosix = 0 //minor version of native posix implementation
+ val NativeMinorVersionPosix = 1 //minor version of native posix implementation
val NativeVersionPosix = NativeMajorVersion + "." + NativeMinorVersionPosix
val gitHeadCommitSha = settingKey[String]("Current commit sha.")