Skip to content

Commit

Permalink
prepare release 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jodersky committed May 12, 2015
1 parent 53f38c7 commit bb5a4ff
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Version 2.1.2
- Better error message for native library extraction.
- Fix packaging of distributed jars for ARM systems (#13).
- Build:
- Upgrade debian source package helpers and dependencies.
- Remove explicit publishing information (now published to bintray).

# Version 2.1.1
- Upgrade to Akka 2.3.10
- Upgrade to Scala 2.11.6 and 2.10.5
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ The main reason for yet another serial communication library for the JVM is that
## Dependencies
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.1.1"
libraryDependencies += "com.github.jodersky" %% "flow" % "2.1.2"

*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.1.1"
libraryDependencies += "com.github.jodersky" % "flow-native" % "2.1.2"

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/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import NativeKeys._
object FlowBuild extends Build {

lazy val commonSettings: Seq[Setting[_]] = Seq(
version := "2.1.2-SNAPSHOT",
version := "2.1.2",
scalaVersion in ThisBuild := "2.11.6",
crossScalaVersions in ThisBuild := Seq("2.10.5", "2.11.6"),
organization := "com.github.jodersky",
Expand Down

0 comments on commit bb5a4ff

Please sign in to comment.