aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2014-09-15 09:24:17 +0200
committerJakob Odersky <jodersky@gmail.com>2014-09-15 09:24:17 +0200
commitc9cc7c06159f7345390afda0badd8f22f864941f (patch)
tree2f73ce0126943912221cadab1f2e650d50a6e500
parentc5ac9af593717e770fca9e46037c0ec8e91f10a7 (diff)
downloadakka-serial-c9cc7c06159f7345390afda0badd8f22f864941f.tar.gz
akka-serial-c9cc7c06159f7345390afda0badd8f22f864941f.tar.bz2
akka-serial-c9cc7c06159f7345390afda0badd8f22f864941f.zip
upgrade akka dependencyv2.0.5
-rw-r--r--CHANGELOG.md3
-rw-r--r--README.md4
-rw-r--r--project/Dependencies.scala2
3 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cdfe10c..4b4496f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+Version 2.0.5
+- Upgrade to Akka dependency 2.3.6
+
Version 2.0.4
- Upgrade to Akka dependency 2.3.5
diff --git a/README.md b/README.md
index a69c148..8e3e778 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" % "2.0.4"
+ libraryDependencies += "com.github.jodersky" %% "flow" % "2.0.5"
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:
- libraryDependencies += "com.github.jodersky" % "flow-native" % "2.0.4"
+ libraryDependencies += "com.github.jodersky" % "flow-native" % "2.0.5"
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 can be supported through this solution at the same time. Currently, these are given in the table below.
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 9532b1a..5e5b919 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -2,7 +2,7 @@ import sbt._
object Dependencies {
- lazy val akkaActor = "com.typesafe.akka" %% "akka-actor" % "2.3.5"
+ lazy val akkaActor = "com.typesafe.akka" %% "akka-actor" % "2.3.6"
lazy val ioCore = "com.github.scala-incubator.io" %% "scala-io-core" % "0.4.3"
lazy val ioFile = "com.github.scala-incubator.io" %% "scala-io-file" % "0.4.3"