Skip to content

Commit

Permalink
Release v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Aug 14, 2015
1 parent f81e682 commit fb423fc
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion doc/CHANGELOG-0.9.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 0.9.2 (unreleased)
# 0.9.2 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.9.1...v0.9.2))

##### New
* Support for JS components.
Expand Down
4 changes: 2 additions & 2 deletions doc/FP.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Scalaz
======

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.9.0"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.9.2"
```

Included is a Scalaz module that facilitates a more functional and pure approach to React integration.
Expand All @@ -23,7 +23,7 @@ Monocle
=======

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.9.0"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.9.2"
```

A module with a extensions for [Monocle](https://github.com/julien-truffaut/Monocle) also exists under `ext-monocle`.
Expand Down
2 changes: 1 addition & 1 deletion doc/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Setup

```scala
// core = essentials only. No bells or whistles.
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.9.0"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.9.2"

// React.JS itself
// Note the JS filename. Can also be react.js, react.min.js, or react-with-addons.min.js.
Expand Down
2 changes: 1 addition & 1 deletion extra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
======================

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.9.0"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.9.2"
```

**Big Stuff**
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ object ScalajsReact extends Build {
_.enablePlugins(ScalaJSPlugin)
.settings(
organization := "com.github.japgolly.scalajs-react",
version := "0.9.2-SNAPSHOT",
version := "0.9.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
2 changes: 1 addition & 1 deletion test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Setup

```scala
// scalajs-react test module
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.9.0" % "test"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.9.2" % "test"

// React JS itself.
// NOTE: Requires react-with-addons.js instead of just react.js
Expand Down

0 comments on commit fb423fc

Please sign in to comment.