From 7c447d44d8fefdbb1dd52db4904b6cd20d8c2283 Mon Sep 17 00:00:00 2001 From: David O'Riordan Date: Sun, 24 Jun 2018 12:19:38 +0100 Subject: [PATCH] v2.0.7 release --- README.md | 10 ++++------ build.sbt | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0ea926c6..ff5d2a42 100644 --- a/README.md +++ b/README.md @@ -69,13 +69,13 @@ You need Java 8 to run Skuber. ## Release -You can use the latest v2.0 release (for Scala 2.11 or 2.12) by adding to your build: +You can use the latest release (for Scala 2.11 or 2.12) by adding to your build: ```sbt -libraryDependencies += "io.skuber" %% "skuber" % "2.0.6" +libraryDependencies += "io.skuber" %% "skuber" % "2.0.7" ``` -Meanwhile existing users can continue to use the latest (and possibly final, with exception of important fixes) v1.x release, which is available only on Scala 2.11: +Meanwhile users of skuber v1 can continue to use the latest (and possibly final, with exception of important fixes) v1.x release, which is available only on Scala 2.11: ```sbt libraryDependencies += "io.skuber" % "skuber_2.11" % "1.7.1" @@ -83,14 +83,12 @@ libraryDependencies += "io.skuber" % "skuber_2.11" % "1.7.1" ## Migrating to release v2 -If you have a Skuber client using release 1.x and want to move to the strategic version 2 release, then check out the [migration guide](docs/MIGRATION_1-to-2.md). +If you have a Skuber client using release v1.x and want to move to the strategic version 2 release, then check out the [migration guide](docs/MIGRATION_1-to-2.md). ## Building Building the library from source is very straightforward. Simply run `sbt test`in the root directory of the project to build the library (and examples) and run the unit tests to verify the build. -Note that the master branch has now been updated with the changes for Skuber v2 - if you want to use Skuber v1.x than build from the release_1.x branch instead. - ## Quick Start The quickest way to get started with Skuber: diff --git a/build.sbt b/build.sbt index 655cd44d..8160b515 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ scalacOptions += "-target:jvm-1.8" scalacOptions in Test ++= Seq("-Yrangepos") -version in ThisBuild := "2.0.6" +version in ThisBuild := "2.0.7" sonatypeProfileName := "io.skuber"