Skip to content

Commit 9b6e6ac

Browse files
committed
Release 0.7.2
1 parent e7ecbef commit 9b6e6ac

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

README.md

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

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

4848
// Test support including ReactTestUtils
4949
// (requires react-with-addons.js instead of just react.js)
50-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.7.1" % "test"
50+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.7.2" % "test"
5151

5252
// Scalaz support
53-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.7.1" // or
54-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.7.1"
53+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.7.2"
5554

5655
// Monocle support
57-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.7.1"
56+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.7.2"
5857

5958
// Extra features
60-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.7.1"
59+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.7.2"
6160
```
6261

6362
Code:

doc/CHANGELOG-0.7.md

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

33
* Added `isMounted` to component scopes.
44
* Added `Addons.ReactCloneWithProps`.

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ object ScalajsReact extends Build {
1717
_.enablePlugins(ScalaJSPlugin)
1818
.settings(
1919
organization := "com.github.japgolly.scalajs-react",
20-
version := "0.7.2-RC1",
20+
version := "0.7.2",
2121
homepage := Some(url("https://github.com/japgolly/scalajs-react")),
2222
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
2323
scalaVersion := Scala211,

0 commit comments

Comments
 (0)