Skip to content

Commit

Permalink
v5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulLeCam committed Dec 14, 2024
1 parent f5b0ef3 commit 0cf6a84
Show file tree
Hide file tree
Showing 7 changed files with 93 additions and 115 deletions.
31 changes: 0 additions & 31 deletions .github/ISSUE_TEMPLATE/bug-report-v4.md

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v5.0.0 (2024-12-14)

### Breaking changes

- React v19 is now required as peer dependency.
- Removed `LeafletProvider` component from the core package.

## v5.0.0-rc.2 (2024-12-06)

This RC uses the stable releases of React v19.
Expand Down
4 changes: 2 additions & 2 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"react-leaflet": "workspace:^"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.7.2",
"vite": "^6.0.3"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@9.14.4",
"packageManager": "pnpm@9.15.0",
"scripts": {
"lint": "biome check --write ./packages",
"lint:ci": "biome ci ./packages",
Expand All @@ -14,7 +14,7 @@
"@biomejs/biome": "^1.9.4",
"@skypack/package-check": "^0.2.2",
"@swc/cli": "^0.5.2",
"@swc/core": "^1.10.0",
"@swc/core": "^1.10.1",
"@swc/jest": "^0.2.37",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-leaflet/core",
"version": "3.0.0-rc.2",
"version": "3.0.0",
"description": "React Leaflet core",
"repository": {
"type": "git",
Expand Down Expand Up @@ -39,8 +39,8 @@
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0"
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2"
},
"jest": {
"extensionsToTreatAsEsm": [".ts", ".tsx"],
Expand Down
6 changes: 3 additions & 3 deletions packages/react-leaflet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-leaflet",
"version": "5.0.0-rc.2",
"version": "5.0.0",
"description": "React components for Leaflet maps",
"repository": {
"type": "git",
Expand Down Expand Up @@ -45,8 +45,8 @@
"devDependencies": {
"@types/geojson": "^7946.0.15",
"@types/leaflet": "^1.9.15",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0"
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2"
},
"jest": {
"extensionsToTreatAsEsm": [".ts", ".tsx"],
Expand Down
Loading

0 comments on commit 0cf6a84

Please sign in to comment.