Skip to content

Commit 998f436

Browse files
committed
Release v0.11.3
1 parent 387e710 commit 998f436

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
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.2.md).
31+
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.11.3.md).
3232

3333

3434
##### External Resources
@@ -49,6 +49,6 @@ Includes a router, testing utils, performance utils, more.
4949

5050
##### Requirements:
5151
* React 15+
52-
* Scala 2.11.n
52+
* Scala 2.11+
5353
* Scala.JS 0.6.13+
5454

bin/update_version_in_docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cd "$(dirname "$(readlink -e "$0")")/.." || exit 1
55
ver="$1"
66

77
find . -name '*.md' -exec perl -pi -e 's/(japgolly.scalajs-react.+)"0(?:\.\d+){2}"/\1"'"$ver"'"/' {} + \
8-
&& perl -pi -e 's/(?<="'"$ver"')-SNAPSHOT//' project/Build.scala \
8+
&& perl -pi -e 's/(?<="'"$ver"')-SNAPSHOT//' build.sbt \
99
&& perl -pi -e 's/(Latest.+\/changelog\/)[0-9.]+?(?=\.md)/${1}'"$ver"'/' README.md \
1010
&& git diff
1111

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version in ThisBuild := "0.11.3-SNAPSHOT"
1+
version in ThisBuild := "0.11.3"
22

33
val root = ScalajsReact.root
44
val core = ScalajsReact.core

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.2"
8+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.3"
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.2"
25+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "0.11.3"
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.2"
42+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.11.3"
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.2"
13+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.3"
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.2"
9+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.3"
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.2" % "test"
31+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.11.3" % "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.2"
29+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.11.3"
3030

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

0 commit comments

Comments
 (0)