diff --git a/doc/CHANGELOG-0.9.md b/doc/CHANGELOG-0.9.md index a4ff4c6e9..b81993326 100644 --- a/doc/CHANGELOG-0.9.md +++ b/doc/CHANGELOG-0.9.md @@ -1,4 +1,4 @@ -### 0.9.2 (unreleased) +# 0.9.2 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.9.1...v0.9.2)) ##### New * Support for JS components. diff --git a/doc/FP.md b/doc/FP.md index 66bb721d6..31df749ab 100644 --- a/doc/FP.md +++ b/doc/FP.md @@ -6,7 +6,7 @@ Scalaz ====== ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.9.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.9.2" ``` Included is a Scalaz module that facilitates a more functional and pure approach to React integration. @@ -23,7 +23,7 @@ Monocle ======= ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.9.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.9.2" ``` A module with a extensions for [Monocle](https://github.com/julien-truffaut/Monocle) also exists under `ext-monocle`. diff --git a/doc/USAGE.md b/doc/USAGE.md index 6fcd3b4e6..186923363 100644 --- a/doc/USAGE.md +++ b/doc/USAGE.md @@ -24,7 +24,7 @@ Setup ```scala // core = essentials only. No bells or whistles. - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.9.0" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.9.2" // React.JS itself // Note the JS filename. Can also be react.js, react.min.js, or react-with-addons.min.js. diff --git a/extra/README.md b/extra/README.md index 8046db59e..28be55bc5 100644 --- a/extra/README.md +++ b/extra/README.md @@ -2,7 +2,7 @@ ====================== ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.9.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.9.2" ``` **Big Stuff** diff --git a/project/Build.scala b/project/Build.scala index 34dcf16ed..590b3516a 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -19,7 +19,7 @@ object ScalajsReact extends Build { _.enablePlugins(ScalaJSPlugin) .settings( organization := "com.github.japgolly.scalajs-react", - version := "0.9.2-SNAPSHOT", + version := "0.9.2", homepage := Some(url("https://github.com/japgolly/scalajs-react")), licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")), scalaVersion := Scala211, diff --git a/test/README.md b/test/README.md index a6127e66d..062412f8f 100644 --- a/test/README.md +++ b/test/README.md @@ -17,7 +17,7 @@ Setup ```scala // scalajs-react test module - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.9.0" % "test" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.9.2" % "test" // React JS itself. // NOTE: Requires react-with-addons.js instead of just react.js