Skip to content

Commit

Permalink
v3 beta 4
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulLeCam committed Aug 16, 2020
1 parent 935f4da commit 25d62ab
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
## v3.0.0-beta.3 (2020-08-16)
## v3.0.0-beta.4 (2020-08-16)

- Specify list of supported browsers ([PR #736](https://github.com/PaulLeCam/react-leaflet/pull/736) by [anajavi](https://github.com/anajavi))
- Drop Babel runtime polyfilling ([PR #739](https://github.com/PaulLeCam/react-leaflet/pull/739) by [anajavi](https://github.com/anajavi))
- Upgrade rollup plugins ([PR #740](https://github.com/PaulLeCam/react-leaflet/pull/740) by [anajavi](https://github.com/anajavi))
- Bump React dependency to v17.

## v3.0.0-beta.3 (2020-08-16)

Broken build

## v3.0.0-beta.2 (2020-07-25)

- Fix `LayersControl` lifecycle logic causing layer removal
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@react-leaflet/core",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"description": "React Leaflet core",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"scripts": {
"build:clean": "del cjs esm types",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir cjs --extensions .ts,.tsx",
"build:cjs": "babel src --out-dir cjs --extensions .ts,.tsx",
"build:esm": "cross-env BABEL_ENV=esm babel src --out-dir esm --extensions .ts,.tsx",
"build:types": "tsc --emitDeclarationOnly",
"build": "yarn run build:clean && yarn run build:cjs && yarn run build:esm && yarn run build:types",
Expand Down
6 changes: 3 additions & 3 deletions packages/react-leaflet/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "react-leaflet",
"version": "3.0.0-beta.3",
"version": "3.0.0-beta.4",
"description": "React components for Leaflet maps",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"scripts": {
"build:clean": "del cjs esm types umd",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir cjs --extensions .ts,.tsx",
"build:cjs": "babel src --out-dir cjs --extensions .ts,.tsx",
"build:esm": "cross-env BABEL_ENV=esm babel src --out-dir esm --extensions .ts,.tsx",
"build:types": "tsc --emitDeclarationOnly",
"build:umd": "cross-env BABEL_ENV=rollup NODE_ENV=development rollup -c",
Expand Down Expand Up @@ -43,7 +43,7 @@
"umd/*"
],
"dependencies": {
"@react-leaflet/core": "^1.0.0-beta.4"
"@react-leaflet/core": "^1.0.0-beta.5"
},
"peerDependencies": {
"leaflet": "^1.6.0",
Expand Down

0 comments on commit 25d62ab

Please sign in to comment.