Skip to content

Commit

Permalink
Release 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Jan 8, 2015
1 parent 9c2f24b commit 793aeb7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
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.7.0"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.7.1"

// 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.7.0" % "test"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.7.1" % "test"

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

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

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

Code:
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Expand Up @@ -18,7 +18,7 @@ object ScalajsReact extends Build {
_.settings(scalaJSSettings: _*)
.settings(
organization := "com.github.japgolly.scalajs-react",
version := "0.7.1-SNAPSHOT",
version := "0.7.1",
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

0 comments on commit 793aeb7

Please sign in to comment.