Skip to content

Commit

Permalink
Prepare to release 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Apr 26, 2022
1 parent b0458a5 commit 644448f
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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" % "2.1.0"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "2.1.1"
```

#### Contents
Expand Down
2 changes: 1 addition & 1 deletion doc/FX_AGNOSTICISM.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion doc/MODULES.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ No additional imports required.
Add to sbt:

```scala
val ScalaJsReactVer = "2.1.0"
val ScalaJsReactVer = "2.1.1"

libraryDependencies ++= Seq(

Expand Down
2 changes: 1 addition & 1 deletion doc/PERFORMANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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" % "2.1.0"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "2.1.1"
```

## Contents
Expand Down
2 changes: 1 addition & 1 deletion doc/TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions doc/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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",
Expand Down
7 changes: 7 additions & 0 deletions doc/changelog/2.1.1.md
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 644448f

Please sign in to comment.