Skip to content

Commit

Permalink
upgrade akka dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jodersky committed Sep 15, 2014
1 parent c5ac9af commit c9cc7c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit c9cc7c0

Please sign in to comment.