Skip to content

Commit

Permalink
Releasing 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Oct 19, 2014
1 parent 6a4c66f commit 8127afd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ Setup
SBT
```scala
// Minimal usage
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.4.1"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.5.0"

// React itself
// (react-with-addons.js can be react.js, react.min.js, react-with-addons.min.js)
jsDependencies += "org.webjars" % "react" % "0.11.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.4.1" % "test"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.5.0" % "test"

// Scalaz support
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.4.1" // or
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.4.1"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.5.0" // or
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.5.0"
```

Code:
Expand Down
2 changes: 1 addition & 1 deletion 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.5.0-SNAPSHOT",
version := "0.5.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

0 comments on commit 8127afd

Please sign in to comment.