Skip to content

Commit abfe52e

Browse files
committed
Releasing 0.6.1
1 parent b159d28 commit abfe52e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

HISTORY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.6.1 (unreleased)
1+
## 0.6.1 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.6.0...v0.6.1))
22

33
##### Core module
44
* Changed overloaded `classSet` methods into `classSet{,1}{,M}`.

README.md

Lines changed: 4 additions & 4 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.6.0"
35+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.6.1"
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.6.0" % "test"
43+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.6.1" % "test"
4444

4545
// Scalaz support
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"
46+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.6.1" // or
47+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.6.1"
4848
```
4949

5050
Code:

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