diff --git a/README.md b/README.md index 89da21b06..8a035ec9c 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ 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/) -- [Changelogs](doc/changelog) — [**v2.0.0-RC3** (Latest)](doc/changelog/2.0.0.md) +- [Changelogs](doc/changelog) — [**v2.0.0** (Latest)](doc/changelog/2.0.0.md) ##### External Resources diff --git a/doc/EXTRA.md b/doc/EXTRA.md index cd7d38e14..0d422a3be 100644 --- a/doc/EXTRA.md +++ b/doc/EXTRA.md @@ -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" % "2.0.0-RC3" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "2.0.0" ``` #### Contents diff --git a/doc/FX_AGNOSTICISM.md b/doc/FX_AGNOSTICISM.md index a8c756102..98b04cb67 100644 --- a/doc/FX_AGNOSTICISM.md +++ b/doc/FX_AGNOSTICISM.md @@ -42,7 +42,7 @@ friends directly, but if you want your library to be effect-agnostic then follow 1. Create `scalafix.sbt` with: ```scala - ThisBuild / scalafixDependencies += "com.github.japgolly.scalajs-react" %% "scalafix" % "2.0.0-RC3" + ThisBuild / scalafixDependencies += "com.github.japgolly.scalajs-react" %% "scalafix" % "2.0.0" ThisBuild / scalafixScalaBinaryVersion := "2.13" ThisBuild / semanticdbEnabled := true ThisBuild / semanticdbVersion := "4.4.23" diff --git a/doc/MODULES.md b/doc/MODULES.md index 08085b046..c2163cb9f 100644 --- a/doc/MODULES.md +++ b/doc/MODULES.md @@ -70,7 +70,7 @@ No additional imports required. Add to sbt: ```scala -val ScalaJsReactVer = "2.0.0-RC3" +val ScalaJsReactVer = "2.0.0" libraryDependencies ++= Seq( diff --git a/doc/PERFORMANCE.md b/doc/PERFORMANCE.md index 5bc035799..48693c4d4 100644 --- a/doc/PERFORMANCE.md +++ b/doc/PERFORMANCE.md @@ -13,7 +13,7 @@ These utilities help you avoid work in two ways. the other utilities are part of the `extra` module. ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "2.0.0-RC3" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "2.0.0" ``` ### Contents diff --git a/doc/ROUTER.md b/doc/ROUTER.md index 3298ceb36..d2041a670 100644 --- a/doc/ROUTER.md +++ b/doc/ROUTER.md @@ -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" % "2.0.0-RC3" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "2.0.0" ``` ## Contents diff --git a/doc/TESTING.md b/doc/TESTING.md index 3daae0a18..c0fe471ee 100644 --- a/doc/TESTING.md +++ b/doc/TESTING.md @@ -27,7 +27,7 @@ Setup ```scala // scalajs-react test module - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "2.0.0-RC3" % Test + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "2.0.0" % Test // React JS itself. // NOTE: Requires react-with-addons.js instead of just react.js diff --git a/doc/USAGE.md b/doc/USAGE.md index aeabea104..3a2df3e3e 100644 --- a/doc/USAGE.md +++ b/doc/USAGE.md @@ -27,7 +27,7 @@ Setup ```scala // "core" = essentials only. No bells or whistles. - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.0.0-RC3" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.0.0" ``` 3. Add React to your build. @@ -42,7 +42,7 @@ Setup enablePlugins(ScalaJSBundlerPlugin) - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.0.0-RC3" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.0.0" npmDependencies in Compile ++= Seq( "react" -> "17.0.2",