Skip to content

Commit

Permalink
Releasing 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Nov 28, 2014
1 parent 737de64 commit 655b1b6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
History
=======

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

This release brings scalajs-react in line with React 0.12.
**React version 0.12.0 or later is now required.**
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ Setup
SBT
```scala
// Minimal usage
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.5.4"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.6.0"

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

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

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

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

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

Examples
========
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ object ScalajsReact extends Build {
_.settings(scalaJSSettings: _*)
.settings(
organization := "com.github.japgolly.scalajs-react",
version := "0.6.0-SNAPSHOT",
version := "0.6.0",
homepage := Some(url("https://github.com/japgolly/scalajs-react")),
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
scalaVersion := Scala211,
Expand Down

0 comments on commit 655b1b6

Please sign in to comment.