Skip to content

Commit 2eb0019

Browse files
committed
Release v0.9.0
1 parent 1f8ca48 commit 2eb0019

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Includes a router, testing utils, performance utils, more.
1919
- [Functional Programming with React](doc/FP.md).
2020
- [`extra`: Utilities not found in React.JS](extra/README.md).
2121
- [Testing](test/README.md).
22-
- [Changelogs](doc/) - [latest](doc/CHANGELOG-0.9.md).
22+
- [Changelogs](doc/) [Latest](doc/CHANGELOG-0.9.md).
2323

2424
##### Requirements:
2525
* React 0.12

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.8.4"
9+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.9.0"
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.8.4"
26+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.9.0"
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
@@ -22,7 +22,7 @@ Setup
2222

2323
```scala
2424
// core = essentials only. No bells or whistles.
25-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.8.4"
25+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.9.0"
2626

2727
// React.JS itself
2828
// 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.8.4"
5+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.9.0"
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.0-SNAPSHOT",
22+
version := "0.9.0",
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.8.4" % "test"
20+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.9.0" % "test"
2121

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

0 commit comments

Comments
 (0)