Skip to content

Commit

Permalink
Releasing 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Dec 9, 2014
1 parent b159d28 commit abfe52e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.6.1 (unreleased)
## 0.6.1 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.6.0...v0.6.1))

##### Core module
* Changed overloaded `classSet` methods into `classSet{,1}{,M}`.
Expand Down
8 changes: 4 additions & 4 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.6.0"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.6.1"

// 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.6.0" % "test"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.6.1" % "test"

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

Code:
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.1-SNAPSHOT",
version := "0.6.1",
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 abfe52e

Please sign in to comment.