Skip to content

Commit 747d1c8

Browse files
committed
Release v0.11.2
1 parent 9088edb commit 747d1c8

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Includes a router, testing utils, performance utils, more.
2828
- [Performance Management](doc/PERFORMANCE.md).
2929
- [Smaller stuff](doc/EXTRA.md).
3030
- [Testing](doc/TESTING.md).
31-
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.11.1.md).
31+
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.11.2.md).
3232

3333

3434
##### External Resources

doc/EXTRA.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This describes the smaller utilities in the `extra` module.
55
Find links to the larger utilities from the [main README](../README.md).
66

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

1111
#### Contents

doc/FP.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Scalaz
2222
======
2323

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

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

4141
```scala
42-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.11.1"
42+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.11.2"
4343
```
4444

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

doc/PERFORMANCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ These utilities help you avoid work in two ways.
1010
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.
1111

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

1616
### Contents

doc/ROUTER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Included is a router (in the orbit of Single-Page Applications) that is written
66
The package is `japgolly.scalajs.react.extra.router`.
77

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

1212
## Contents

doc/TESTING.md

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

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

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

doc/USAGE.md

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

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

3131
// React JS itself (Note the filenames, adjust as needed, eg. to remove addons.)
3232
jsDependencies ++= Seq(

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ object ScalajsReact extends Build {
2929
_.enablePlugins(ScalaJSPlugin)
3030
.settings(
3131
organization := "com.github.japgolly.scalajs-react",
32-
version := "0.11.2-SNAPSHOT",
32+
version := "0.11.2",
3333
homepage := Some(url("https://github.com/japgolly/scalajs-react")),
3434
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
3535
scalaVersion := Ver.Scala211,

0 commit comments

Comments
 (0)