Skip to content

Commit e37f15c

Browse files
committed
Release v1.0.0-RC3
1 parent 9035013 commit e37f15c

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ Includes a router, testing utils, performance utils, more.
3030
- [Other](doc/EXTRA.md)
3131
- [Testing](doc/TESTING.md)
3232
- [Live Examples & Demos](https://japgolly.github.io/scalajs-react/)
33-
- ScalaDoc: [core](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/core_sjs0.6_2.11/1.0.0-RC2) | [extra](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/extra_sjs0.6_2.11/1.0.0-RC2) | [scalaz72](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-scalaz72_sjs0.6_2.12/1.0.0-RC2) | [monocle](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-monocle_sjs0.6_2.12/1.0.0-RC2) | [cats](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-cats_sjs0.6_2.12/1.0.0-RC2) | [test](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/test_sjs0.6_2.12/1.0.0-RC2)
34-
- [Changelogs](doc/changelog)[**v1.0.0-RC2** (Latest)](doc/changelog/1.0.0-RC.md)
33+
- ScalaDoc: [core](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/core_sjs0.6_2.11/1.0.0-RC3) | [extra](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/extra_sjs0.6_2.11/1.0.0-RC3) | [scalaz72](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-scalaz72_sjs0.6_2.12/1.0.0-RC3) | [monocle](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-monocle_sjs0.6_2.12/1.0.0-RC3) | [cats](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/ext-cats_sjs0.6_2.12/1.0.0-RC3) | [test](https://www.javadoc.io/doc/com.github.japgolly.scalajs-react/test_sjs0.6_2.12/1.0.0-RC3)
34+
- [Changelogs](doc/changelog)[**v1.0.0-RC3** (Latest)](doc/changelog/1.0.0-RC.md)
3535

3636

3737
##### External Resources
@@ -51,4 +51,4 @@ Includes a router, testing utils, performance utils, more.
5151
##### Requirements:
5252
* React 15.3+
5353
* Scala 2.11 or 2.12.
54-
* Scala.JS 0.6.14+
54+
* Scala.JS 0.6.15+

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version in ThisBuild := "1.0.0-RC3-SNAPSHOT"
1+
version in ThisBuild := "1.0.0-RC3"
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-RC2"
8+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.0-RC3"
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-RC2"
25+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "1.0.0-RC3"
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" % "1.0.0-RC2"
42+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "1.0.0-RC3"
4343
```
4444

4545
A module with a extensions for [Monocle](https://github.com/julien-truffaut/Monocle) also exists under `ext-monocle`.
@@ -51,7 +51,7 @@ Cats
5151
====
5252

5353
```scala
54-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-cats" % "1.0.0-RC2"
54+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-cats" % "1.0.0-RC3"
5555
```
5656

5757
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-RC2"
13+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.0-RC3"
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-RC2"
9+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.0-RC3"
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-RC2" % "test"
29+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "1.0.0-RC3" % "test"
3030

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

doc/USAGE.md

+1-1
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-RC2"
26+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.0.0-RC3"
2727

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

0 commit comments

Comments
 (0)