aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-09-13 19:09:59 +0200
committerJakob Odersky <jodersky@gmail.com>2015-09-13 19:18:10 +0200
commit82b36aefa2f3d09b18a96f7d2d056a0030350ffa (patch)
tree2ee1681b5da3cfbd06d39e8b8e8fc653cf58f3bf
parent79ad7707bdc4511948b614699ae7f5d8a3ad1dfc (diff)
downloadakka-serial-2.2.3.tar.gz
akka-serial-2.2.3.tar.bz2
akka-serial-2.2.3.zip
prepare release 2.2.3v2.2.3
-rw-r--r--Documentation/getting-started.md4
-rw-r--r--project/Build.scala2
2 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/getting-started.md b/Documentation/getting-started.md
index 013388c..798b5be 100644
--- a/Documentation/getting-started.md
+++ b/Documentation/getting-started.md
@@ -1,7 +1,7 @@
# Getting Started
Flow uses SBT as build system. To get started, include a dependency to flow-core in your project:
- libraryDependencies += "com.github.jodersky" %% "flow" % "2.2.2"
+ libraryDependencies += "com.github.jodersky" %% "flow" % "2.2.3"
## Including Native Library
*NOTICE: 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.*
@@ -9,7 +9,7 @@ Flow uses SBT as build system. To get started, include a dependency to flow-core
### The Easy Way
In case your OS/architecture combination is present in the table below, add a second dependency to your project:
- libraryDependencies += "com.github.jodersky" % "flow-native" % "2.2.2"
+ libraryDependencies += "com.github.jodersky" % "flow-native" % "2.2.3"
| OS | Architecture | Notes |
|-------------------|-----------------------------|---------------------------------------------------------------------------------|
diff --git a/project/Build.scala b/project/Build.scala
index 862f353..a901d2e 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -9,7 +9,7 @@ object FlowBuild extends Build {
val scalaVersions = List("2.11.7", "2.10.5")
lazy val commonSettings: Seq[Setting[_]] = Seq(
- version := "2.2.3-SNAPSHOT",
+ version := "2.2.3",
scalaVersion in ThisBuild := scalaVersions.head,
crossScalaVersions in ThisBuild := scalaVersions.reverse,
organization := "com.github.jodersky",