From 998f436e21b96b1241aab46d666cba9f8e6d7b0f Mon Sep 17 00:00:00 2001 From: David Barri Date: Sat, 5 Nov 2016 12:47:21 +1100 Subject: [PATCH] Release v0.11.3 --- README.md | 4 ++-- bin/update_version_in_docs.sh | 2 +- build.sbt | 2 +- doc/EXTRA.md | 2 +- doc/FP.md | 4 ++-- doc/PERFORMANCE.md | 2 +- doc/ROUTER.md | 2 +- doc/TESTING.md | 2 +- doc/USAGE.md | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index c69e84bda..02075f02c 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Includes a router, testing utils, performance utils, more. - [Performance Management](doc/PERFORMANCE.md). - [Smaller stuff](doc/EXTRA.md). - [Testing](doc/TESTING.md). -- [Changelogs](doc/changelog) — [Latest](doc/changelog/0.11.2.md). +- [Changelogs](doc/changelog) — [Latest](doc/changelog/0.11.3.md). ##### External Resources @@ -49,6 +49,6 @@ Includes a router, testing utils, performance utils, more. ##### Requirements: * React 15+ -* Scala 2.11.n +* Scala 2.11+ * Scala.JS 0.6.13+ diff --git a/bin/update_version_in_docs.sh b/bin/update_version_in_docs.sh index 8ec7107a9..19332b640 100755 --- a/bin/update_version_in_docs.sh +++ b/bin/update_version_in_docs.sh @@ -5,7 +5,7 @@ cd "$(dirname "$(readlink -e "$0")")/.." || exit 1 ver="$1" find . -name '*.md' -exec perl -pi -e 's/(japgolly.scalajs-react.+)"0(?:\.\d+){2}"/\1"'"$ver"'"/' {} + \ - && perl -pi -e 's/(?<="'"$ver"')-SNAPSHOT//' project/Build.scala \ + && perl -pi -e 's/(?<="'"$ver"')-SNAPSHOT//' build.sbt \ && perl -pi -e 's/(Latest.+\/changelog\/)[0-9.]+?(?=\.md)/${1}'"$ver"'/' README.md \ && git diff diff --git a/build.sbt b/build.sbt index c475b8f37..9a63df813 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -version in ThisBuild := "0.11.3-SNAPSHOT" +version in ThisBuild := "0.11.3" val root = ScalajsReact.root val core = ScalajsReact.core diff --git a/doc/EXTRA.md b/doc/EXTRA.md index 3d2d11393..1d5fc4581 100644 --- a/doc/EXTRA.md +++ b/doc/EXTRA.md @@ -5,7 +5,7 @@ This describes the smaller utilities in the `extra` module. Find links to the larger utilities from the [main README](../README.md). ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.2" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.3" ``` #### Contents diff --git a/doc/FP.md b/doc/FP.md index d6976b598..83c24417a 100644 --- a/doc/FP.md +++ b/doc/FP.md @@ -22,7 +22,7 @@ Scalaz ====== ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "0.11.2" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "0.11.3" ``` Included is a Scalaz module that facilitates a more functional and pure approach to React integration. @@ -39,7 +39,7 @@ Monocle ======= ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.11.2" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.11.3" ``` A module with a extensions for [Monocle](https://github.com/julien-truffaut/Monocle) also exists under `ext-monocle`. diff --git a/doc/PERFORMANCE.md b/doc/PERFORMANCE.md index 4501577c1..bc30e2943 100644 --- a/doc/PERFORMANCE.md +++ b/doc/PERFORMANCE.md @@ -10,7 +10,7 @@ These utilities help you avoid work in two ways. 2. By allowing you to cache your own arbitrary data, and build on it in a way such that derivative data is also cached effeciently. ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.2" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.3" ``` ### Contents diff --git a/doc/ROUTER.md b/doc/ROUTER.md index 7feede592..ad807d16d 100644 --- a/doc/ROUTER.md +++ b/doc/ROUTER.md @@ -6,7 +6,7 @@ Included is a router (in the orbit of Single-Page Applications) that is written The package is `japgolly.scalajs.react.extra.router`. ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.2" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.3" ``` ## Contents diff --git a/doc/TESTING.md b/doc/TESTING.md index 992969373..d7d234b34 100644 --- a/doc/TESTING.md +++ b/doc/TESTING.md @@ -28,7 +28,7 @@ Setup ```scala // scalajs-react test module - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.11.2" % "test" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.11.3" % "test" // React JS itself. // NOTE: Requires react-with-addons.js instead of just react.js diff --git a/doc/USAGE.md b/doc/USAGE.md index c736ad75c..7b1fdd600 100644 --- a/doc/USAGE.md +++ b/doc/USAGE.md @@ -26,7 +26,7 @@ Setup ```scala // core = essentials only. No bells or whistles. - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.11.2" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.11.3" // React JS itself (Note the filenames, adjust as needed, eg. to remove addons.) jsDependencies ++= Seq(