diff --git a/README.md b/README.md index d57fc7064..2ec909b11 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,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.10.4.md). +- [Changelogs](doc/changelog) — [Latest](doc/changelog/0.11.0.md). ##### External Resources diff --git a/doc/EXTRA.md b/doc/EXTRA.md index 3a279ef01..25c2f9816 100644 --- a/doc/EXTRA.md +++ b/doc/EXTRA.md @@ -2,7 +2,7 @@ ====================== ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.10.4" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.0" ``` **Big Stuff** diff --git a/doc/FP.md b/doc/FP.md index a6cdebf05..4bb58e96e 100644 --- a/doc/FP.md +++ b/doc/FP.md @@ -22,7 +22,7 @@ Scalaz ====== ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "0.10.4" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "0.11.0" ``` 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.10.4" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.11.0" ``` A module with a extensions for [Monocle](https://github.com/julien-truffaut/Monocle) also exists under `ext-monocle`. diff --git a/doc/TESTING.md b/doc/TESTING.md index 516f6709a..9b9076b6f 100644 --- a/doc/TESTING.md +++ b/doc/TESTING.md @@ -19,7 +19,7 @@ Setup ```scala // scalajs-react test module - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.10.4" % "test" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.11.0" % "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 e21b77bc4..40d422586 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.10.4" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.11.0" // React JS itself (Note the filenames, adjust as needed, eg. to remove addons.) jsDependencies ++= Seq( diff --git a/project/Build.scala b/project/Build.scala index 6920b2bf5..d469a9bcf 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -29,7 +29,7 @@ object ScalajsReact extends Build { _.enablePlugins(ScalaJSPlugin) .settings( organization := "com.github.japgolly.scalajs-react", - version := "0.11.0-SNAPSHOT", + version := "0.11.0", homepage := Some(url("https://github.com/japgolly/scalajs-react")), licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")), scalaVersion := Ver.Scala211,