Skip to content

Commit d1491db

Browse files
committed
Release 0.8.2
1 parent 6715942 commit d1491db

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,24 @@ Firstly, you'll need to add [Scala.js](http://www.scala-js.org) to your project.
3939
Next, add scalajs-react to SBT:
4040
```scala
4141
// Minimal usage
42-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.8.1"
42+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.8.2"
4343

4444
// React itself
4545
// (react-with-addons.js can be react.js, react.min.js, react-with-addons.min.js)
4646
jsDependencies += "org.webjars" % "react" % "0.12.1" / "react-with-addons.js" commonJSName "React"
4747

4848
// Test support including ReactTestUtils
4949
// (requires react-with-addons.js instead of just react.js)
50-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.8.1" % "test"
50+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.8.2" % "test"
5151

5252
// Scalaz support
53-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.8.1"
53+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.8.2"
5454

5555
// Monocle support
56-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.8.1"
56+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.8.2"
5757

58-
// Extra features
59-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.8.1"
58+
// Extra features (includes Scalaz and Monocle support)
59+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.8.2"
6060
```
6161

6262
Code:

doc/CHANGELOG-0.8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0.8.2
1+
# 0.8.2 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.8.1...v0.8.2))
22

33
* Upgrade to Scala.JS 0.6.1.
44
* Upgrade dependencies to versions built with Scala.JS 0.6.1.

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ object ScalajsReact extends Build {
1717
_.enablePlugins(ScalaJSPlugin)
1818
.settings(
1919
organization := "com.github.japgolly.scalajs-react",
20-
version := "0.8.2-SNAPSHOT",
20+
version := "0.8.2",
2121
homepage := Some(url("https://github.com/japgolly/scalajs-react")),
2222
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
2323
scalaVersion := Scala211,

0 commit comments

Comments
 (0)