Skip to content

Commit fa6b01b

Browse files
committed
Release v1.3.1
1 parent aee07af commit fa6b01b

8 files changed

+13
-13
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Includes a router, testing utils, performance utils, more.
3131
- [Other](doc/EXTRA.md)
3232
- [Testing](doc/TESTING.md)
3333
- [Live Examples & Demos](https://japgolly.github.io/scalajs-react/)
34-
- ScalaDoc: [core](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/core_sjs0.6_2.11/1.3.0) | [extra](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/extra_sjs0.6_2.11/1.3.0) | [scalaz72](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-scalaz72_sjs0.6_2.12/1.3.0) | [monocle](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-monocle_sjs0.6_2.12/1.3.0) | [monocle-cats](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-monocle-cats_sjs0.6_2.12/1.3.0) | [cats](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-cats_sjs0.6_2.12/1.3.0) | [test](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/test_sjs0.6_2.12/1.3.0)
35-
- [Changelogs](doc/changelog)[**v1.3.0** (Latest)](doc/changelog/1.3.0.md)
34+
- ScalaDoc: [core](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/core_sjs0.6_2.11/1.3.1) | [extra](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/extra_sjs0.6_2.11/1.3.1) | [scalaz72](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-scalaz72_sjs0.6_2.12/1.3.1) | [monocle](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-monocle_sjs0.6_2.12/1.3.1) | [monocle-cats](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-monocle-cats_sjs0.6_2.12/1.3.1) | [cats](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-cats_sjs0.6_2.12/1.3.1) | [test](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/test_sjs0.6_2.12/1.3.1)
35+
- [Changelogs](doc/changelog)[**v1.3.1** (Latest)](doc/changelog/1.3.1.md)
3636

3737

3838
##### External Resources

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version in ThisBuild := "1.3.1-SNAPSHOT"
1+
version in ThisBuild := "1.3.1"
22
organization in ThisBuild := "com.github.japgolly.scalajs-react"
33
homepage in ThisBuild := Some(url("https://github.com/japgolly/scalajs-react"))
44
licenses in ThisBuild := ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")) :: Nil

doc/EXTRA.md

+1-1
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" % "1.3.0"
8+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.3.1"
99
```
1010

1111
#### Contents

doc/FP.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Scalaz
2424
======
2525

2626
```scala
27-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "1.3.0"
27+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "1.3.1"
2828
```
2929

3030
Included is a Scalaz module that facilitates a more functional and pure approach to React integration.
@@ -42,7 +42,7 @@ Monocle
4242

4343
```scala
4444
libraryDependencies ++= Seq(
45-
"com.github.japgolly.scalajs-react" %%% "ext-monocle" % "1.3.0",
45+
"com.github.japgolly.scalajs-react" %%% "ext-monocle" % "1.3.1",
4646
"com.github.julien-truffaut" %%% "monocle-core" % "1.5.0",
4747
"com.github.julien-truffaut" %%% "monocle-macro" % "1.5.0"
4848
)
@@ -60,7 +60,7 @@ Monocle-cats
6060

6161
```scala
6262
libraryDependencies ++= Seq(
63-
"com.github.japgolly.scalajs-react" %%% "ext-monocle-cats" % "1.3.0",
63+
"com.github.japgolly.scalajs-react" %%% "ext-monocle-cats" % "1.3.1",
6464
"com.github.julien-truffaut" %%% "monocle-core" % "1.5.0-cats",
6565
"com.github.julien-truffaut" %%% "monocle-macro" % "1.5.0-cats"
6666
)
@@ -73,7 +73,7 @@ Cats
7373
====
7474

7575
```scala
76-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-cats" % "1.3.0"
76+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-cats" % "1.3.1"
7777
```
7878

7979
There's a Cats module now too. It's pretty much that same as the Scalaz module but without

doc/PERFORMANCE.md

+1-1
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 efficiently.
1111

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

1616
### Contents

doc/ROUTER.md

+1-1
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" % "1.3.0"
9+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.3.1"
1010
```
1111

1212
## Contents

doc/TESTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Setup
2626

2727
```scala
2828
// scalajs-react test module
29-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "1.3.0" % Test
29+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "1.3.1" % Test
3030

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

doc/USAGE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Setup
2323

2424
```scala
2525
// core = essentials only. No bells or whistles.
26-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.3.0"
26+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.3.1"
2727
```
2828

2929
3. Add React to your build.
@@ -38,7 +38,7 @@ Setup
3838

3939
enablePlugins(ScalaJSBundlerPlugin)
4040

41-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.3.0"
41+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.3.1"
4242

4343
npmDependencies in Compile ++= Seq(
4444
"react" -> "16.5.1",

0 commit comments

Comments
 (0)