From 644448f7424d56458af7f925390d092e42bfec99 Mon Sep 17 00:00:00 2001 From: David Barri Date: Tue, 26 Apr 2022 13:20:09 +1000 Subject: [PATCH] Prepare to release 2.1.1 --- README.md | 2 +- doc/EXTRA.md | 2 +- doc/FX_AGNOSTICISM.md | 2 +- doc/MODULES.md | 2 +- doc/PERFORMANCE.md | 2 +- doc/ROUTER.md | 2 +- doc/TESTING.md | 2 +- doc/USAGE.md | 4 ++-- doc/changelog/2.1.1.md | 7 +++++++ 9 files changed, 16 insertions(+), 9 deletions(-) create mode 100644 doc/changelog/2.1.1.md diff --git a/README.md b/README.md index 852398c4e..d3ab0ddff 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,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.1.0** (Latest)](doc/changelog/2.1.0.md) +- [Changelogs](doc/changelog) — [**v2.1.1** (Latest)](doc/changelog/2.1.1.md) ##### External Resources diff --git a/doc/EXTRA.md b/doc/EXTRA.md index 3092afb1a..d9bcf1099 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.1.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "2.1.1" ``` #### Contents diff --git a/doc/FX_AGNOSTICISM.md b/doc/FX_AGNOSTICISM.md index fe35c0ebc..d26dd70e4 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.1.0" + ThisBuild / scalafixDependencies += "com.github.japgolly.scalajs-react" %% "scalafix" % "2.1.1" ThisBuild / scalafixScalaBinaryVersion := "2.13" ThisBuild / semanticdbEnabled := true ThisBuild / semanticdbVersion := "4.4.23" diff --git a/doc/MODULES.md b/doc/MODULES.md index 73429507c..6ab7b46b5 100644 --- a/doc/MODULES.md +++ b/doc/MODULES.md @@ -70,7 +70,7 @@ No additional imports required. Add to sbt: ```scala -val ScalaJsReactVer = "2.1.0" +val ScalaJsReactVer = "2.1.1" libraryDependencies ++= Seq( diff --git a/doc/PERFORMANCE.md b/doc/PERFORMANCE.md index 688f2c065..e77b631fb 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.1.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "2.1.1" ``` ### Contents diff --git a/doc/ROUTER.md b/doc/ROUTER.md index 9a58944ac..1b2251276 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.1.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "2.1.1" ``` ## Contents diff --git a/doc/TESTING.md b/doc/TESTING.md index 1767a5c3f..817b8236e 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.1.0" % Test + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "2.1.1" % 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 4cd260e67..4b1f3d106 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.1.0" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.1.1" ``` 3. Add React to your build. @@ -42,7 +42,7 @@ Setup enablePlugins(ScalaJSBundlerPlugin) - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.1.0" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.1.1" Compile / npmDependencies ++= Seq( "react" -> "17.0.2", diff --git a/doc/changelog/2.1.1.md b/doc/changelog/2.1.1.md new file mode 100644 index 000000000..5d160b7a2 --- /dev/null +++ b/doc/changelog/2.1.1.md @@ -0,0 +1,7 @@ +## 2.1.1 + +### Fixes + +* Add React `key` to SVG attributes [#1059](https://github.com/japgolly/scalajs-react/issues/1059) (thanks @triggerNZ) + +* Correct the `clipPath` tag [#1060](https://github.com/japgolly/scalajs-react/issues/1060) (thanks @nghuuphuoc)