From 24ad7fcb820c74647d67d37fd880b6a24fbc797e Mon Sep 17 00:00:00 2001 From: Quincy Morgan <2046746+quincylvania@users.noreply.github.com> Date: Tue, 27 Oct 2020 21:11:06 -0400 Subject: [PATCH] v2.19.1 --- CHANGELOG.md | 10 ++++++++++ modules/core/context.js | 2 +- package.json | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc74bf26a..e9cd0da14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,16 @@ _Breaking developer changes, which may affect downstream projects or sites that [@xxxx]: https://github.com/xxxx --> +# 2.19.1 +##### 2020-Oct-27 + +#### :bug: Bugfixes +* Fix a critical bug where changing Allowed Access or Bike Lanes fields could add invalid tags ([#8126]) +* Fix en issue with automatically opening the sidebar after drawing a new feature +* Correct the alignment of the new update badge icon + +[#8126]: https://github.com/openstreetmap/iD/issues/8126 + # 2.19.0 ##### 2020-Oct-27 diff --git a/modules/core/context.js b/modules/core/context.js index b5ea47db2..70ddaaade 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -26,7 +26,7 @@ export function coreContext() { let context = utilRebind({}, dispatch, 'on'); let _deferred = new Set(); - context.version = '2.19.1-dev'; + context.version = '2.19.1'; context.privacyVersion = '20200407'; // iD will alter the hash so cache the parameters intended to setup the session diff --git a/package.json b/package.json index 2ff056f09..9035c2294 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iD", - "version": "2.19.1-dev", + "version": "2.19.1", "description": "A friendly editor for OpenStreetMap", "main": "dist/iD.min.js", "repository": "github:openstreetmap/iD",