diff --git a/README.md b/README.md index 5c2869850..0a10d4c60 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Firstly, you'll need to add [Scala.js](http://www.scala-js.org) to your project. Next, add scalajs-react to SBT: ```scala // Minimal usage -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.6.1" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.7.0" // React itself // (react-with-addons.js can be react.js, react.min.js, react-with-addons.min.js) @@ -45,17 +45,17 @@ jsDependencies += "org.webjars" % "react" % "0.12.1" / "react-with-addons.js" co // Test support including ReactTestUtils // (requires react-with-addons.js instead of just react.js) -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.6.1" % "test" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.7.0" % "test" // Scalaz support -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.6.1" // or -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.6.1" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.7.0" // or +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.7.0" // Monocle support -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.6.1" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.7.0" // Extra features -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.6.1" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.7.0" ``` Code: diff --git a/TODO b/TODO deleted file mode 100644 index cc2a5e4a1..000000000 --- a/TODO +++ /dev/null @@ -1 +0,0 @@ -parentSel = id => c.modStateIO(State._detailRowSelParent set id), diff --git a/doc/CHANGELOG-0.7.md b/doc/CHANGELOG-0.7.md index d0c0ae3c2..29b47ccee 100644 --- a/doc/CHANGELOG-0.7.md +++ b/doc/CHANGELOG-0.7.md @@ -1,4 +1,4 @@ -# 0.7.0 (unreleased) +# 0.7.0 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.6.1...v0.7.0)) To ease migration, here is a script that perform 98% of the required changes for you: https://gist.github.com/japgolly/c68482dbadb0077f550c diff --git a/project/Build.scala b/project/Build.scala index 9da284b71..eb0b01d79 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -18,7 +18,7 @@ object ScalajsReact extends Build { _.settings(scalaJSSettings: _*) .settings( organization := "com.github.japgolly.scalajs-react", - version := "0.7.0-SNAPSHOT", + version := "0.7.0", homepage := Some(url("https://github.com/japgolly/scalajs-react")), licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")), scalaVersion := Scala211, @@ -146,4 +146,4 @@ object ScalajsReact extends Build { .settings( emitSourceMaps := false, artifactPath in (Compile, fullOptJS) := file("gh-pages/res/ghpages.js")) -} \ No newline at end of file +}