diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b6fef9fb6..3f9c09415e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,18 @@ _Breaking developer changes, which may affect downstream projects or sites that [@xxxx]: https://github.com/xxxx --> +# [2.2.4](https://github.com/facebook/Rapid/releases/tag/rapid-v2.2.4) +#### 2024-Jan-11 + +#### :bug: Bugfixes: +* [#1287], [#1288] Fix bug: Adding a detected road feature can cause nearby other features to vanish +* [#1292] Fix incorrect tagging after choosing a crossing validation fix where multiple nodes exist along a way + +[#1287]: https://github.com/facebook/Rapid/issues/1287 +[#1288]: https://github.com/facebook/Rapid/issues/1288 +[#1292]: https://github.com/facebook/Rapid/issues/1292 + + # [2.2.3](https://github.com/facebook/Rapid/releases/tag/rapid-v2.2.3) #### 2024-Jan-05 diff --git a/modules/Context.js b/modules/Context.js index fbcfd69ade..8673613b5e 100644 --- a/modules/Context.js +++ b/modules/Context.js @@ -30,7 +30,7 @@ export class Context extends EventEmitter { super(); this.privacyVersion = '20201202'; - this.version = '2.2.3'; // see https://semver.org/ for examples + this.version = '2.2.4'; // see https://semver.org/ for examples // These may be set by our continuous deployment scripts, or left empty this.buildID = ''; diff --git a/package.json b/package.json index 03343ea722..33ac7fb01a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rapideditor/rapid", - "version": "2.2.3", + "version": "2.2.4", "description": "An AI-enhanced editor for OpenStreetMap", "main": "dist/rapid.min.js", "repository": "github:facebook/Rapid",