Skip to content

Commit 655b1b6

Browse files
committed
Releasing 0.6.0
1 parent 737de64 commit 655b1b6

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

HISTORY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
History
22
=======
33

4-
### 0.6.0 (unreleased)
4+
### 0.6.0 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.5.4...v0.6.0))
55

66
This release brings scalajs-react in line with React 0.12.
77
**React version 0.12.0 or later is now required.**

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ Setup
3232
SBT
3333
```scala
3434
// Minimal usage
35-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.5.4"
35+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.6.0"
3636

3737
// React itself
3838
// (react-with-addons.js can be react.js, react.min.js, react-with-addons.min.js)
3939
jsDependencies += "org.webjars" % "react" % "0.12.1" / "react-with-addons.js" commonJSName "React"
4040

4141
// Test support including ReactTestUtils
4242
// (requires react-with-addons.js instead of just react.js)
43-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.5.4" % "test"
43+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.6.0" % "test"
4444

4545
// Scalaz support
46-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.5.4" // or
47-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.5.4"
46+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.6.0" // or
47+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.6.0"
4848
```
4949

5050
Code:
@@ -62,7 +62,6 @@ import japgolly.scalajs.react._, vdom.ReactVDom._, all._, ScalazReact._
6262
```
6363

6464
You will also need to add [Scala.js](http://www.scala-js.org) to your project.
65-
Version 0.5.4 or later is required.
6665

6766
Examples
6867
========

project/Build.scala

Lines changed: 1 addition & 1 deletion
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.6.0-SNAPSHOT",
21+
version := "0.6.0",
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)