aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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",