Skip to content

Commit a379220

Browse files
committed
Release v1.0.1
1 parent 39e08da commit a379220

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
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.0.0) | [extra](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/extra_sjs0.6_2.11/1.0.0) | [scalaz72](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-scalaz72_sjs0.6_2.12/1.0.0) | [monocle](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-monocle_sjs0.6_2.12/1.0.0) | [cats](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-cats_sjs0.6_2.12/1.0.0) | [test](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/test_sjs0.6_2.12/1.0.0)
35-
- [Changelogs](doc/changelog)[**v1.0.0** (Latest)](doc/changelog/1.0.0.md)
34+
- ScalaDoc: [core](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/core_sjs0.6_2.11/1.0.1) | [extra](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/extra_sjs0.6_2.11/1.0.1) | [scalaz72](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-scalaz72_sjs0.6_2.12/1.0.1) | [monocle](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-monocle_sjs0.6_2.12/1.0.1) | [cats](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-cats_sjs0.6_2.12/1.0.1) | [test](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/test_sjs0.6_2.12/1.0.1)
35+
- [Changelogs](doc/changelog)[**v1.0.1** (Latest)](doc/changelog/1.0.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.0.1-SNAPSHOT"
1+
version in ThisBuild := "1.0.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.0.0"
8+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.1"
99
```
1010

1111
#### Contents

doc/FP.md

+3-3
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" % "1.0.0"
25+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "1.0.1"
2626
```
2727

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

4141
```scala
4242
libraryDependencies ++= Seq(
43-
"com.github.japgolly.scalajs-react" %%% "ext-monocle" % "1.0.0",
43+
"com.github.japgolly.scalajs-react" %%% "ext-monocle" % "1.0.1",
4444
"com.github.julien-truffaut" %%% "monocle-core" % "1.4.0",
4545
"com.github.julien-truffaut" %%% "monocle-macro" % "1.4.0"
4646
)
@@ -57,7 +57,7 @@ Cats
5757
====
5858

5959
```scala
60-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-cats" % "1.0.0"
60+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-cats" % "1.0.1"
6161
```
6262

6363
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 effeciently.
1111

1212
```scala
13-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.0"
13+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.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.0.0"
9+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.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.0.0" % "test"
29+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "1.0.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.0.0"
26+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.0.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.0.0"
41+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.0.1"
4242

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

0 commit comments

Comments
 (0)