Skip to content

Commit 793aeb7

Browse files
committed
Release 0.7.1
1 parent 9c2f24b commit 793aeb7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,25 @@ Firstly, you'll need to add [Scala.js](http://www.scala-js.org) to your project.
3737
Next, add scalajs-react to SBT:
3838
```scala
3939
// Minimal usage
40-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.7.0"
40+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.7.1"
4141

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

4646
// Test support including ReactTestUtils
4747
// (requires react-with-addons.js instead of just react.js)
48-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.7.0" % "test"
48+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.7.1" % "test"
4949

5050
// Scalaz support
51-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.7.0" // or
52-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.7.0"
51+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.7.1" // or
52+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.7.1"
5353

5454
// Monocle support
55-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.7.0"
55+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.7.1"
5656

5757
// Extra features
58-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.7.0"
58+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.7.1"
5959
```
6060

6161
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.7.1-SNAPSHOT",
21+
version := "0.7.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)