Skip to content

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed May 30, 2015
1 parent 1f8ca48 commit 2eb0019
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Includes a router, testing utils, performance utils, more.
- [Functional Programming with React](doc/FP.md).
- [`extra`: Utilities not found in React.JS](extra/README.md).
- [Testing](test/README.md).
- [Changelogs](doc/) - [latest](doc/CHANGELOG-0.9.md).
- [Changelogs](doc/) [Latest](doc/CHANGELOG-0.9.md).

##### Requirements:
* React 0.12
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.8.4"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.9.0"
```

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.8.4"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.9.0"
```

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 @@ -22,7 +22,7 @@ Setup

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

// 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.8.4"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.9.0"
```

**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.0-SNAPSHOT",
version := "0.9.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
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.8.4" % "test"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.9.0" % "test"

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

0 comments on commit 2eb0019

Please sign in to comment.