diff --git a/README.md b/README.md index 76af94560..342ea56d2 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Firstly, you'll need to add [Scala.js](http://www.scala-js.org) to your project. Next, add scalajs-react to SBT: ```scala // Minimal usage -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.8.1" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.8.2" // React itself // (react-with-addons.js can be react.js, react.min.js, react-with-addons.min.js) @@ -47,16 +47,16 @@ jsDependencies += "org.webjars" % "react" % "0.12.1" / "react-with-addons.js" co // Test support including ReactTestUtils // (requires react-with-addons.js instead of just react.js) -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.8.1" % "test" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.8.2" % "test" // Scalaz support -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.8.1" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.8.2" // Monocle support -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.8.1" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.8.2" -// Extra features -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.8.1" +// Extra features (includes Scalaz and Monocle support) +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.8.2" ``` Code: diff --git a/doc/CHANGELOG-0.8.md b/doc/CHANGELOG-0.8.md index bdc22258a..e6c691bf9 100644 --- a/doc/CHANGELOG-0.8.md +++ b/doc/CHANGELOG-0.8.md @@ -1,4 +1,4 @@ -# 0.8.2 +# 0.8.2 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.8.1...v0.8.2)) * Upgrade to Scala.JS 0.6.1. * Upgrade dependencies to versions built with Scala.JS 0.6.1. diff --git a/project/Build.scala b/project/Build.scala index 0ed6c1429..101c111ba 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -17,7 +17,7 @@ object ScalajsReact extends Build { _.enablePlugins(ScalaJSPlugin) .settings( organization := "com.github.japgolly.scalajs-react", - version := "0.8.2-SNAPSHOT", + version := "0.8.2", homepage := Some(url("https://github.com/japgolly/scalajs-react")), licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")), scalaVersion := Scala211,