diff --git a/CHANGELOG.md b/CHANGELOG.md index 06f60f97a..2a427a03a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.4.3 + +* Fix for layer not found error in `featuresAt` function by @caldwellc in https://github.com/mapbox/mapbox-gl-draw/pull/1194 +* Trigger `featureChanged` on feature props change by @wyozi in https://github.com/mapbox/mapbox-gl-draw/pull/1196 +* Remove `preventDefault()` on `touchstart` and `touchmove` events by @Archetylator in https://github.com/mapbox/mapbox-gl-draw/pull/1195 + ## 1.4.2 * Fix key event handler checks for `mapboxgl-canvas` by @neodescis in https://github.com/mapbox/mapbox-gl-draw/pull/1165 diff --git a/README.md b/README.md index 9967797f7..bc8eac329 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ import MapboxDraw from "@mapbox/mapbox-gl-draw"; **When using a CDN** ```html - + ``` #### CSS @@ -42,7 +42,7 @@ import '@mapbox/mapbox-gl-draw/dist/mapbox-gl-draw.css' **When using CDN** ```html - + ``` ### Typescript diff --git a/package.json b/package.json index d5a9efbdd..568ff12c5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mapbox/mapbox-gl-draw", - "version": "1.4.2", + "version": "1.4.3", "description": "A drawing component for Mapbox GL JS", "homepage": "https://github.com/mapbox/mapbox-gl-draw", "author": "mapbox",