From 1bde3ba63faa4d8bab66ed738053bbedf7d3b007 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Wed, 20 Feb 2019 18:23:47 -0500 Subject: [PATCH] v2.14.1 --- CHANGELOG.md | 6 ++++++ modules/core/context.js | 2 +- package.json | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d07dd635..31542693b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,12 @@ _Breaking changes, which may affect downstream projects or sites that embed iD, [@xxxx]: https://github.com/xxxx --> +# 2.14.1 +##### 2019-Feb-20 + +#### :bug: Bugfixes +* Fix an issue where ImproveOSM would not load due to non-HTTPS endpoints + # 2.14.0 ##### 2019-Feb-20 diff --git a/modules/core/context.js b/modules/core/context.js index 46b30e9b3..274913e4d 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -35,7 +35,7 @@ export function setAreaKeys(value) { export function coreContext() { var context = {}; - context.version = '2.14.0'; + context.version = '2.14.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 58c599924..94293af79 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iD", - "version": "2.14.0", + "version": "2.14.1", "description": "A friendly editor for OpenStreetMap", "main": "iD.js", "repository": "openstreetmap/iD",