From 2eb00197e192dec73fb5ea7bc31cad6e574c29d9 Mon Sep 17 00:00:00 2001 From: David Barri Date: Sat, 30 May 2015 18:51:53 +1000 Subject: [PATCH] Release v0.9.0 --- README.md | 2 +- doc/FP.md | 4 ++-- doc/USAGE.md | 2 +- extra/README.md | 2 +- project/Build.scala | 2 +- test/README.md | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d81747e3d..9ee7cc1f6 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Includes a router, testing utils, performance utils, more. - [Functional Programming with React](doc/FP.md). - [`extra`: Utilities not found in React.JS](extra/README.md). - [Testing](test/README.md). -- [Changelogs](doc/) - [latest](doc/CHANGELOG-0.9.md). +- [Changelogs](doc/) — [Latest](doc/CHANGELOG-0.9.md). ##### Requirements: * React 0.12 diff --git a/doc/FP.md b/doc/FP.md index d95f47d86..66bb721d6 100644 --- a/doc/FP.md +++ b/doc/FP.md @@ -6,7 +6,7 @@ Scalaz ====== ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.8.4" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.9.0" ``` 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.8.4" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.9.0" ``` 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 5b761cbda..e79136540 100644 --- a/doc/USAGE.md +++ b/doc/USAGE.md @@ -22,7 +22,7 @@ Setup ```scala // core = essentials only. No bells or whistles. - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.8.4" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.9.0" // 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 d292d99aa..8046db59e 100644 --- a/extra/README.md +++ b/extra/README.md @@ -2,7 +2,7 @@ ====================== ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.8.4" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.9.0" ``` **Big Stuff** diff --git a/project/Build.scala b/project/Build.scala index 5539a6fa8..3b8ddd7e9 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.0-SNAPSHOT", + version := "0.9.0", 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 95a366d36..ba84b8830 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.8.4" % "test" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.9.0" % "test" // React JS itself. // NOTE: Requires react-with-addons.js instead of just react.js