diff --git a/CHANGELOG.md b/CHANGELOG.md index 3264d182b..ec8e9972c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,20 @@ _Breaking changes, which may affect downstream projects or sites that embed iD, [@xxxx]: https://github.com/xxxx --> +# 2.18.3 +##### 2020-Jul-22 + +#### :bug: Bugfixes +* Fix issue where selected features would auto-center after deleting or navigating nodes in ways ([#7820]) +* Fix some non-loading background imagery layers ([#7823]) +* Properly update the inspector when switching between features with generic presets ([#7827]) +* Fix broken Browse button for custom map data files ([#7828]) + +[@7827]: https://github.com/7827 +[@7820]: https://github.com/7820 +[@7823]: https://github.com/7823 +[@7828]: https://github.com/7828 + # 2.18.2 ##### 2020-Jul-21 diff --git a/modules/core/context.js b/modules/core/context.js index 804f670a0..d359ce7d1 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.18.3-dev'; + context.version = '2.18.3'; 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 ad572f685..04bdd2a7f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iD", - "version": "2.18.3-dev", + "version": "2.18.3", "description": "A friendly editor for OpenStreetMap", "main": "dist/iD.min.js", "repository": "github:openstreetmap/iD",