From 612dfe4073d30af14f12e1e585da9d72f6e9ccc2 Mon Sep 17 00:00:00 2001 From: Quincy Morgan <2046746+quincylvania@users.noreply.github.com> Date: Wed, 28 Oct 2020 10:49:36 -0400 Subject: [PATCH] v2.19.2 --- 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 f3914ad055..013f37cedb 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.2 +##### 2020-Oct-28 + +#### :bug: Bugfixes +* Fix an issue where the Lines chapter of the walkthrough could not be completed ([#8128], thanks [@ricloy]) + +[#8128]: https://github.com/openstreetmap/iD/issues/8128 + +[@ricloy]: https://github.com/ricloy + # 2.19.1 ##### 2020-Oct-27 diff --git a/modules/core/context.js b/modules/core/context.js index 637f62b26f..0c8b4c7301 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.2-dev'; + context.version = '2.19.2'; 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 b50cff2fa2..42d3bf0b6a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iD", - "version": "2.19.2-dev", + "version": "2.19.2", "description": "A friendly editor for OpenStreetMap", "main": "dist/iD.min.js", "repository": "github:openstreetmap/iD",