Skip to content

Commit 23a24ec

Browse files
committed
Release 0.8.3
1 parent 968c8ff commit 23a24ec

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
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.2"
42+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.8.3"
4343

4444
// React itself
4545
// (react-with-addons.js can be react.js, react.min.js, react-with-addons.min.js)
46-
jsDependencies += "org.webjars" % "react" % "0.12.1" / "react-with-addons.js" commonJSName "React"
46+
jsDependencies += "org.webjars" % "react" % "0.13.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.2" % "test"
50+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.8.3" % "test"
5151

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

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

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

6262
Code:

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.3-SNAPSHOT",
20+
version := "0.8.3",
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)