Skip to content

Commit 8f40a2a

Browse files
committed
Release 0.5.1
1 parent d1ae005 commit 8f40a2a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

HISTORY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
History
22
=======
33

4-
### 0.5.1 (unreleased)
4+
### 0.5.1 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.5.0...v0.5.1))
55

66
* Fixed Scalatags rejecting `VDom`.
77
* Added `ScalazReact.ReactS.setM`.

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ Setup
2727
SBT
2828
```scala
2929
// Minimal usage
30-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.5.0"
30+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.5.1"
3131

3232
// React itself
3333
// (react-with-addons.js can be react.js, react.min.js, react-with-addons.min.js)
3434
jsDependencies += "org.webjars" % "react" % "0.11.1" / "react-with-addons.js" commonJSName "React"
3535

3636
// Test support including ReactTestUtils
3737
// (requires react-with-addons.js instead of just react.js)
38-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.5.0" % "test"
38+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.5.1" % "test"
3939

4040
// Scalaz support
41-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.5.0" // or
42-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.5.0"
41+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.5.1" // or
42+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.5.1"
4343
```
4444

4545
Code:

project/Build.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ object ScalajsReact extends Build {
1818
_.settings(scalaJSSettings: _*)
1919
.settings(
2020
organization := "com.github.japgolly.scalajs-react",
21-
version := "0.5.1-SNAPSHOT",
21+
version := "0.5.1",
2222
homepage := Some(url("https://github.com/japgolly/scalajs-react")),
2323
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
2424
scalaVersion := Scala211,

0 commit comments

Comments
 (0)