From cf3de577a3f0acc34da9e421e1b0e00afe330a58 Mon Sep 17 00:00:00 2001 From: thaddmt <68032955+thaddmt@users.noreply.github.com> Date: Thu, 10 Feb 2022 14:07:44 -0800 Subject: [PATCH] chore prep v1.3.0 (#30) --- CHANGELOG.md | 12 +++++++++++- README.md | 4 +++- package.json | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8f9c70..301c9f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ ## master -## 1.1.1 +## 1.3.0 + +### Features / Improvements 🚀 + +- Added suggestions API and UI around display suggestions [#27](https://github.com/maplibre/maplibre-gl-geocoder/pull/27) + +### Bug fixes 🐛 + +- N/A + +## 1.2.0 ### Features / Improvements 🚀 diff --git a/README.md b/README.md index b67e6e4..a65aae9 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,8 @@ import '@maplibre/maplibre-gl-geocoder/dist/maplibre-gl-geocoder.css'; // View config definitions in our [documentation](https://github.com/maplibre/maplibre-gl-geocoder/blob/master/API.md#setgeocoderapi) var Geo = { forwardGeocode: async (config) => { /* definition here */ }, - reverseGeocode: async (config) => { /* definition here */ }, + reverseGeocode: async (config) => { /* definition here */ }, // optional reverse geocoding API + getSuggestions: async (config) => { /* definition here */ }} // optional suggestion API }; // Pass in or define a geocoding API that matches the above @@ -41,4 +42,5 @@ See [API.md](https://github.com/maplibre/maplibre-gl-geocoder/blob/master/API.md See [CONTRIBUTING.md](https://github.com/maplibre/maplibre-gl-geocoder/blob/master/CONTRIBUTING.md). ### Licence + ISC © [MapLibre](https://github.com/maplibre) © [Mapbox](https://github.com/mapbox) diff --git a/package.json b/package.json index 3e30e11..111b334 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@maplibre/maplibre-gl-geocoder", - "version": "1.2.0", + "version": "1.3.0", "description": "A geocoder control for Maplibre GL JS", "main": "lib/index.js", "unpkg": "dist/maplibre-gl-geocoder.min.js",