Skip to content

Commit

Permalink
Merge branch 'hotfix/2.3.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
perruche committed Jan 30, 2024
2 parents 2cc7a17 + 61da138 commit 7aba13d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format

## [Unreleased]

## [v2.3.4](https://github.com/studiometa/vue-mapbox-gl/compare/2.3.3...2.3.4) (2024-01-30)

### Fixed
- Fix Geocoder proximity props default ([#133](https://github.com/studiometa/vue-mapbox-gl/pull/133))

## [v2.3.3](https://github.com/studiometa/vue-mapbox-gl/compare/2.3.2...2.3.3) (2024-01-12)

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions 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,7 +1,7 @@
{
"name": "@studiometa/vue-mapbox-gl-workspace",
"private": true,
"version": "2.3.3",
"version": "2.3.4",
"workspaces": [
"packages/*"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@studiometa/vue-mapbox-gl-demo",
"version": "2.3.3",
"version": "2.3.4",
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build"
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@studiometa/vue-mapbox-gl-docs",
"private": true,
"version": "2.3.3",
"version": "2.3.4",
"scripts": {
"dev": "vitepress",
"build": "vitepress build"
Expand Down
4 changes: 2 additions & 2 deletions packages/vue-mapbox-gl/components/MapboxGeocoder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
default: 'Search',
},
proximity: {
type: Object,
default: () => ({}),
type: [Object, Array, String],
default: 'ip',
},
trackProximity: {
type: Boolean,
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-mapbox-gl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@studiometa/vue-mapbox-gl",
"version": "2.3.3",
"version": "2.3.4",
"description": "A small components library to use Mapbox GL in Vue 3.",
"homepage": "https://github.com/studiometa/vue-mapbox-gl#readme",
"bugs": {
Expand Down

0 comments on commit 7aba13d

Please sign in to comment.