diff --git a/CHANGELOG.md b/CHANGELOG.md index eb88b1c0b..252dc31a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,13 +31,16 @@ _Breaking changes, which may affect downstream projects or sites that embed iD, --> # 2.18.5 -##### Planned: 2020-Sep +##### 2020-Sep-08 + +#### :newspaper: News +* The OpenStreetMap Foundation is now [directly supporting](https://wiki.osmfoundation.org/wiki/Board/Minutes/2020-09#2020.2FRes42_Accept_contract_with_Quincy_Morgan) Quincy Morgan ([@quincylvania](https://github.com/quincylvania)) as a full-time maintainer of iD #### :sparkles: Usability * Open links from OpenStreetMap Notes in new tabs ([#7883], [#7893], thanks [@JeeZeh]) -* Don't say a line or area isn' visible enough to disconnect when all the connected points are onscreen ([#7944]) +* Don't say lines and areas aren't visible enough to disconnect when all their connected points are onscreen ([#7944]) * Leave behind the area tags when extracting a point from a building part or indoor room ([#7862]) -* Hide sources from the Backgrounds list that are blocked by the OpenStreetMap API ([#7871], [#7905]) +* Hide background imagery sources that are blocked by the OpenStreetMap API ([#7871], [#7905]) [#7883]: https://github.com/openstreetmap/iD/issues/7883 [#7893]: https://github.com/openstreetmap/iD/issues/7893 @@ -110,6 +113,8 @@ _Breaking changes, which may affect downstream projects or sites that embed iD, * Add more fields to Ferry Route * Show Diet Types field by default on Restaurant ([#7918]) +[#7832]: https://github.com/openstreetmap/iD/issues/7832 +[#7783]: https://github.com/openstreetmap/iD/issues/7783 [#7851]: https://github.com/openstreetmap/iD/issues/7851 [#7878]: https://github.com/openstreetmap/iD/issues/7878 [#7912]: https://github.com/openstreetmap/iD/issues/7912 diff --git a/modules/core/context.js b/modules/core/context.js index d7f1b8f8a..1364d6649 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.5-dev'; + context.version = '2.18.5'; 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 d85b66151..5ba861122 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iD", - "version": "2.18.5-dev", + "version": "2.18.5", "description": "A friendly editor for OpenStreetMap", "main": "dist/iD.min.js", "repository": "github:openstreetmap/iD",