From ad289e05656ae442523c90557732267470d6b398 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 29 Aug 2018 00:55:36 -0400 Subject: [PATCH] v2.11.1 --- CHANGELOG.md | 9 +++++++++ modules/core/context.js | 2 +- package.json | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 537ec831c..ad6c2d608 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,15 @@ _Breaking changes, which may affect downstream projects or sites that embed iD, [@xxxx]: https://github.com/xxxx --> +# 2.11.1 +##### Aug 29, 2018 + +#### :bug: Bugfixes +* Fix handling of `.gpx` files passed in via url ([#5253]) + +[#5253]: https://github.com/openstreetmap/iD/issues/5253 + + # 2.11.0 ##### Aug 26, 2018 diff --git a/modules/core/context.js b/modules/core/context.js index 4303983ed..7efd9e7b2 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -53,7 +53,7 @@ export function setAreaKeys(value) { export function coreContext() { var context = {}; - context.version = '2.11.0'; + context.version = '2.11.1'; // create a special translation that contains the keys in place of the strings var tkeys = _cloneDeep(dataEn); diff --git a/package.json b/package.json index e3e1ce3d0..a262d6a9f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iD", - "version": "2.11.0", + "version": "2.11.1", "description": "A friendly editor for OpenStreetMap", "main": "iD.js", "repository": "openstreetmap/iD",