diff --git a/README.md b/README.md index f7c070ef2..b037ec8ab 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ Includes a router, testing utils, performance utils, more. - [Other](doc/EXTRA.md) - [Testing](doc/TESTING.md) - [Live Examples & Demos](https://japgolly.github.io/scalajs-react/) -- ScalaDoc: [core](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/core_sjs0.6_2.11/1.1.0) | [extra](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/extra_sjs0.6_2.11/1.1.0) | [scalaz72](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-scalaz72_sjs0.6_2.12/1.1.0) | [monocle](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-monocle_sjs0.6_2.12/1.1.0) | [cats](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-cats_sjs0.6_2.12/1.1.0) | [test](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/test_sjs0.6_2.12/1.1.0) -- [Changelogs](doc/changelog) — [**v1.1.0** (Latest)](doc/changelog/1.1.0.md) +- ScalaDoc: [core](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/core_sjs0.6_2.11/1.1.1) | [extra](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/extra_sjs0.6_2.11/1.1.1) | [scalaz72](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-scalaz72_sjs0.6_2.12/1.1.1) | [monocle](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-monocle_sjs0.6_2.12/1.1.1) | [cats](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-cats_sjs0.6_2.12/1.1.1) | [test](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/test_sjs0.6_2.12/1.1.1) +- [Changelogs](doc/changelog) — [**v1.1.1** (Latest)](doc/changelog/1.1.1.md) ##### External Resources diff --git a/build.sbt b/build.sbt index 16e6847b9..69a3e5110 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -version in ThisBuild := "1.1.1-SNAPSHOT" +version in ThisBuild := "1.1.1" organization in ThisBuild := "com.github.japgolly.scalajs-react" homepage in ThisBuild := Some(url("https://github.com/japgolly/scalajs-react")) licenses in ThisBuild := ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")) :: Nil diff --git a/doc/EXTRA.md b/doc/EXTRA.md index db4c607a1..2a7b2a5c1 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" % "1.1.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.1.1" ``` #### Contents diff --git a/doc/FP.md b/doc/FP.md index caf026dca..c82bc275f 100644 --- a/doc/FP.md +++ b/doc/FP.md @@ -22,7 +22,7 @@ Scalaz ====== ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "1.1.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "1.1.1" ``` Included is a Scalaz module that facilitates a more functional and pure approach to React integration. @@ -40,7 +40,7 @@ Monocle ```scala libraryDependencies ++= Seq( - "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "1.1.0", + "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "1.1.1", "com.github.julien-truffaut" %%% "monocle-core" % "1.4.0", "com.github.julien-truffaut" %%% "monocle-macro" % "1.4.0" ) @@ -57,7 +57,7 @@ Cats ==== ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-cats" % "1.1.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-cats" % "1.1.1" ``` There's a Cats module now too. It's pretty much that same as the Scalaz module but without diff --git a/doc/PERFORMANCE.md b/doc/PERFORMANCE.md index 34574f079..4d8ef55c5 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" % "1.1.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.1.1" ``` ### Contents diff --git a/doc/ROUTER.md b/doc/ROUTER.md index 2be02b992..69c497259 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" % "1.1.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.1.1" ``` ## Contents diff --git a/doc/TESTING.md b/doc/TESTING.md index fa8ade0e7..07725f6d9 100644 --- a/doc/TESTING.md +++ b/doc/TESTING.md @@ -26,7 +26,7 @@ Setup ```scala // scalajs-react test module - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "1.1.0" % "test" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "1.1.1" % "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 57ab394ff..8afb1e40e 100644 --- a/doc/USAGE.md +++ b/doc/USAGE.md @@ -23,7 +23,7 @@ Setup ```scala // core = essentials only. No bells or whistles. - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.1.0" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.1.1" ``` 3. Add React to your build. @@ -38,7 +38,7 @@ Setup enablePlugins(ScalaJSBundlerPlugin) - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.1.0" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.1.1" npmDependencies in Compile ++= Seq( "react" -> "15.6.1",