Skip to content

Commit 140db3e

Browse files
committed
0.8.0
1 parent 573ad10 commit 140db3e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 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.7.2"
42+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.8.0"
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.7.2" % "test"
50+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.8.0" % "test"
5151

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

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

5858
// Extra features
59-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.7.2"
59+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.8.0"
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.0-SNAPSHOT",
20+
version := "0.8.0",
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)