Skip to content

Commit

Permalink
Release 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Mar 5, 2015
1 parent 6715942 commit d1491db
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,24 @@ 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.8.1"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.8.2"

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

// Scalaz support
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.8.1"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.8.2"

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

// Extra features
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.8.1"
// Extra features (includes Scalaz and Monocle support)
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.8.2"
```

Code:
Expand Down
2 changes: 1 addition & 1 deletion doc/CHANGELOG-0.8.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.8.2
# 0.8.2 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.8.1...v0.8.2))

* Upgrade to Scala.JS 0.6.1.
* Upgrade dependencies to versions built with Scala.JS 0.6.1.
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object ScalajsReact extends Build {
_.enablePlugins(ScalaJSPlugin)
.settings(
organization := "com.github.japgolly.scalajs-react",
version := "0.8.2-SNAPSHOT",
version := "0.8.2",
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 d1491db

Please sign in to comment.