Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Dec 30, 2014
1 parent f9ffc57 commit 0d3d52c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ 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)
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.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:
Expand Down
1 change: 0 additions & 1 deletion TODO

This file was deleted.

2 changes: 1 addition & 1 deletion doc/CHANGELOG-0.7.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions 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.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,
Expand Down Expand Up @@ -146,4 +146,4 @@ object ScalajsReact extends Build {
.settings(
emitSourceMaps := false,
artifactPath in (Compile, fullOptJS) := file("gh-pages/res/ghpages.js"))
}
}

0 comments on commit 0d3d52c

Please sign in to comment.