Skip to content

Commit 44340ea

Browse files
committed
Release 0.8.1
1 parent 356ea1d commit 44340ea

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

+5-5
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.0"
42+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.8.1"
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.0" % "test"
50+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.8.1" % "test"
5151

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

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

5858
// Extra features
59-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.8.0"
59+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.8.1"
6060
```
6161

6262
Code:

project/Build.scala

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