diff --git a/CHANGELOG.md b/CHANGELOG.md index 944779f4c..73996cd2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,38 @@ _Breaking changes, which may affect downstream projects or sites that embed iD, [@xxxx]: https://github.com/xxxx --> +# 2.8.1 +##### April 24, 2018 + +#### :sparkles: Usability +* Linkify subreddit in community description ([#4997]) + +[#4997]: https://github.com/openstreetmap/iD/issues/4997 + +#### :bug: Bugfixes + +* Avoid reversing ways when using the join operation ([#4872]) +* Fix join-line and join-point cursors ([#4887]) +* Fix tabbing between fields in the tag editor on Firefox ([#4991]) +* Don't add empty `source` tag on a changeset ([#4993]) + +[#4993]: https://github.com/openstreetmap/iD/issues/4993 +[#4991]: https://github.com/openstreetmap/iD/issues/4991 +[#4887]: https://github.com/openstreetmap/iD/issues/4887 +[#4872]: https://github.com/openstreetmap/iD/issues/4872 + +#### :rocket: Presets +* Change `amenity=bureau_de_change` to allow tagging as a building/area ([#5005]) +* Remove point as allowable geometry from `barrier=gate` ([#5004]) +* Add `brand=*` field to `shop=car` preset ([#4998], [#4999], thanks [@hikemaniac]) + +[#5005]: https://github.com/openstreetmap/iD/issues/5005 +[#5004]: https://github.com/openstreetmap/iD/issues/5004 +[#4999]: https://github.com/openstreetmap/iD/issues/4999 +[#4998]: https://github.com/openstreetmap/iD/issues/4998 +[@hikemaniac]: https://github.com/hikemaniac + + # 2.8.0 ##### April 16, 2018 diff --git a/modules/core/context.js b/modules/core/context.js index 41e724cff..be0d74aaf 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.8.0'; + context.version = '2.8.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 112dd720c..87a314432 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iD", - "version": "2.8.0", + "version": "2.8.1", "description": "A friendly editor for OpenStreetMap", "main": "iD.js", "repository": "openstreetmap/iD",