Skip to content

Commit

Permalink
Release v1.0.0-RC3
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Apr 20, 2017
1 parent 9035013 commit e37f15c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Includes a router, testing utils, performance utils, more.
- [Other](doc/EXTRA.md)
- [Testing](doc/TESTING.md)
- [Live Examples & Demos](https://japgolly.github.io/scalajs-react/)
- 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)
- [Changelogs](doc/changelog)[**v1.0.0-RC2** (Latest)](doc/changelog/1.0.0-RC.md)
- 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)
- [Changelogs](doc/changelog)[**v1.0.0-RC3** (Latest)](doc/changelog/1.0.0-RC.md)


##### External Resources
Expand All @@ -51,4 +51,4 @@ Includes a router, testing utils, performance utils, more.
##### Requirements:
* React 15.3+
* Scala 2.11 or 2.12.
* Scala.JS 0.6.14+
* Scala.JS 0.6.15+
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version in ThisBuild := "1.0.0-RC3-SNAPSHOT"
version in ThisBuild := "1.0.0-RC3"
organization in ThisBuild := "com.github.japgolly.scalajs-react"
homepage in ThisBuild := Some(url("https://github.com/japgolly/scalajs-react"))
licenses in ThisBuild := ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")) :: Nil
Expand Down
2 changes: 1 addition & 1 deletion doc/EXTRA.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This describes the smaller utilities in the `extra` module.
Find links to the larger utilities from the [main README](../README.md).

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.0-RC2"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.0-RC3"
```

#### Contents
Expand Down
6 changes: 3 additions & 3 deletions doc/FP.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Scalaz
======

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "1.0.0-RC2"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "1.0.0-RC3"
```

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

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "1.0.0-RC2"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "1.0.0-RC3"
```

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

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

There's a Cats module now too. It's pretty much that same as the Scalaz module but without
Expand Down
2 changes: 1 addition & 1 deletion doc/PERFORMANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ These utilities help you avoid work in two ways.
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.

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.0-RC2"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.0-RC3"
```

### Contents
Expand Down
2 changes: 1 addition & 1 deletion doc/ROUTER.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Included is a router (in the orbit of Single-Page Applications) that is written
The package is `japgolly.scalajs.react.extra.router`.

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.0-RC2"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "1.0.0-RC3"
```

## Contents
Expand Down
2 changes: 1 addition & 1 deletion doc/TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Setup

```scala
// scalajs-react test module
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "1.0.0-RC2" % "test"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "1.0.0-RC3" % "test"

// React JS itself.
// NOTE: Requires react-with-addons.js instead of just react.js
Expand Down
2 changes: 1 addition & 1 deletion doc/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Setup

```scala
// core = essentials only. No bells or whistles.
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.0.0-RC2"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.0.0-RC3"

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

0 comments on commit e37f15c

Please sign in to comment.