Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v5.0.2 #521

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Bug fixes 🐛

- Fix `setPlaceholder` so that when `setPlaceholder` is called afterwards it return updated placeholder string [#502](https://github.com/mapbox/mapbox-gl-geocoder/pull/502)
- Fixed support of [mapbox-gl](https://github.com/mapbox/mapbox-gl-js)@3

## 5.0.1

Expand Down
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ Lastly, run the test command from the console:

## Deploying

Follow this deploy process after all changes for the release are merged into master. You will copy and paste this checklist in the comment of the release pull request.
Follow this deploy process after all changes for the release are merged into main. You will copy and paste this checklist in the comment of the release pull request.

```
## Release checklist

1. Create a branch off `master` and a pull request with the following changes. Copy this checklist in the comment of the pull request.
- [ ] Update the [CHANGELOG.md](https://github.com/mapbox/mapbox-gl-geocoder/blob/master/CHANGELOG.md) by comparing the last release and what is on `master`. In the changelog, replace the `master` heading with the to-be-released stable version.
1. Create a branch off `main` and a pull request with the following changes. Copy this checklist in the comment of the pull request.
- [ ] Update the [CHANGELOG.md](https://github.com/mapbox/mapbox-gl-geocoder/blob/main/CHANGELOG.md) by comparing the last release and what is on `main`. In the changelog, replace the `HEAD` heading with the to-be-released stable version.
- [ ] Update the version number in `package.json` and `package-lock.json`.
3. Request a PR review and then merge it into `master`.
3. Request a PR review and then merge it into `main`.
4. Tag the release and start the build.
- [ ] Make sure you've pulled in all changes to `master` locally.
- [ ] Make sure you've pulled in all changes to `main` locally.
- [ ] Build the release with `npm run prepublish && npm run docs`
- [ ] Commit and push with commit message `vX.X.X`
- [ ] Create the git tag for the release with `git tag -a vX.X.X -m 'vX.X.X'`
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mapbox/mapbox-gl-geocoder",
"version": "5.0.1",
"version": "5.0.2",
"description": "A geocoder control for Mapbox GL JS",
"main": "lib/index.js",
"unpkg": "dist/mapbox-gl-geocoder.min.js",
Expand Down