Skip to content

Commit fb423fc

Browse files
committed
Release v0.9.2
1 parent f81e682 commit fb423fc

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

doc/CHANGELOG-0.9.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 0.9.2 (unreleased)
1+
# 0.9.2 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.9.1...v0.9.2))
22

33
##### New
44
* Support for JS components.

doc/FP.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Scalaz
66
======
77

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

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

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

2929
A module with a extensions for [Monocle](https://github.com/julien-truffaut/Monocle) also exists under `ext-monocle`.

doc/USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Setup
2424

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

2929
// React.JS itself
3030
// Note the JS filename. Can also be react.js, react.min.js, or react-with-addons.min.js.

extra/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
======================
33

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

88
**Big Stuff**

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ object ScalajsReact extends Build {
1919
_.enablePlugins(ScalaJSPlugin)
2020
.settings(
2121
organization := "com.github.japgolly.scalajs-react",
22-
version := "0.9.2-SNAPSHOT",
22+
version := "0.9.2",
2323
homepage := Some(url("https://github.com/japgolly/scalajs-react")),
2424
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
2525
scalaVersion := Scala211,

test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Setup
1717

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

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

0 commit comments

Comments
 (0)