Skip to content

Commit

Permalink
Release v0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Sep 23, 2016
1 parent 9088edb commit 747d1c8
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Includes a router, testing utils, performance utils, more.
- [Performance Management](doc/PERFORMANCE.md).
- [Smaller stuff](doc/EXTRA.md).
- [Testing](doc/TESTING.md).
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.11.1.md).
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.11.2.md).


##### External Resources
Expand Down
2 changes: 1 addition & 1 deletion doc/EXTRA.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This describes the smaller utilities in the `extra` module.
Find links to the larger utilities from the [main README](../README.md).

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.1"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.2"
```

#### Contents
Expand Down
4 changes: 2 additions & 2 deletions doc/FP.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Scalaz
======

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "0.11.1"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "0.11.2"
```

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

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.11.1"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.11.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/PERFORMANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ These utilities help you avoid work in two ways.
2. By allowing you to cache your own arbitrary data, and build on it in a way such that derivative data is also cached effeciently.

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.1"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.2"
```

### Contents
Expand Down
2 changes: 1 addition & 1 deletion doc/ROUTER.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Included is a router (in the orbit of Single-Page Applications) that is written
The package is `japgolly.scalajs.react.extra.router`.

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.1"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.2"
```

## Contents
Expand Down
2 changes: 1 addition & 1 deletion doc/TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Setup

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

// React JS itself.
// NOTE: Requires react-with-addons.js instead of just react.js
Expand Down
2 changes: 1 addition & 1 deletion doc/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Setup

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

// React JS itself (Note the filenames, adjust as needed, eg. to remove addons.)
jsDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ object ScalajsReact extends Build {
_.enablePlugins(ScalaJSPlugin)
.settings(
organization := "com.github.japgolly.scalajs-react",
version := "0.11.2-SNAPSHOT",
version := "0.11.2",
homepage := Some(url("https://github.com/japgolly/scalajs-react")),
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
scalaVersion := Ver.Scala211,
Expand Down

0 comments on commit 747d1c8

Please sign in to comment.