Skip to content

Commit

Permalink
chore prep v1.3.0 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
thaddmt authored Feb 10, 2022
1 parent d3405b3 commit cf3de57
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 🚀

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit cf3de57

Please sign in to comment.