diff --git a/CHANGELOG.md b/CHANGELOG.md index 83d91855f..d4e62067a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,15 @@ _Breaking changes, which may affect downstream projects or sites that embed iD, [@xxxx]: https://github.com/xxxx --> +# 2.17.2 +##### 2020-Feb-14 + +#### :tada: New Features +* Restore Maxar Imagery layers, using masked iD-specific connection keys ([#7355]) + +[#7355]: https://github.com/openstreetmap/iD/issues/7355 + + # 2.17.1 ##### 2020-Jan-16 diff --git a/modules/core/context.js b/modules/core/context.js index 56332de97..c793ec028 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -27,7 +27,7 @@ export function coreContext() { let context = utilRebind({}, dispatch, 'on'); let _deferred = new Set(); - context.version = '2.17.1'; + context.version = '2.17.2'; context.privacyVersion = '20191217'; // create a special translation that contains the keys in place of the strings diff --git a/package.json b/package.json index 23cf662e1..1389cacb6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iD", - "version": "2.17.1", + "version": "2.17.2", "description": "A friendly editor for OpenStreetMap", "main": "iD.js", "repository": "openstreetmap/iD",