Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
elfalem committed Mar 7, 2023
1 parent 7eea619 commit 5eb68cc
Show file tree
Hide file tree
Showing 4 changed files with 679 additions and 2,683 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.2] - 2023-03-07
### Fixed
- Fix high CPU usage during zoomed animations #57
- Fix dependency vulnerabilities

## [0.9.1] - 2021-11-06
### Fixed
- Fix bug with empty curve when using canvas renderer #44
Expand Down Expand Up @@ -77,7 +82,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Ability to draw Bézier curves.

[Unreleased]: https://github.com/elfalem/Leaflet.curve/compare/v0.9.1...HEAD
[Unreleased]: https://github.com/elfalem/Leaflet.curve/compare/v0.9.2...HEAD
[0.9.2]: https://github.com/elfalem/Leaflet.curve/compare/v0.9.1...v0.9.2
[0.9.1]: https://github.com/elfalem/Leaflet.curve/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/elfalem/Leaflet.curve/compare/v0.8.1...v0.9.0
[0.8.1]: https://github.com/elfalem/Leaflet.curve/compare/v0.8.0...v0.8.1
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elfalem/leaflet-curve",
"version": "0.9.1",
"version": "0.9.2",
"description": "A Leaflet plugin for drawing Bézier curves and other complex shapes.",
"main": "dist/leaflet.curve.js",
"types": "types/leaflet.curve.d.ts",
Expand Down Expand Up @@ -28,13 +28,14 @@
},
"homepage": "https://github.com/elfalem/Leaflet.curve#readme",
"devDependencies": {
"webpack": "^4.17.2",
"webpack-cli": "^3.1.2"
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"peerDependencies": {
"leaflet": "^1.1.0"
},
"optionalDependencies": {
"@tweenjs/tween.js": "^17.2.0"
}
},
"dependencies": {}
}
4 changes: 2 additions & 2 deletions src/leaflet.curve.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Leaflet.curve v0.9.1 - a plugin for Leaflet mapping library. https://github.com/elfalem/Leaflet.curve
* (c) elfalem 2015-2021
* Leaflet.curve v0.9.2 - a plugin for Leaflet mapping library. https://github.com/elfalem/Leaflet.curve
* (c) elfalem 2015-2023
*/
/*
* note that SVG (x, y) corresponds to (long, lat)
Expand Down
Loading

0 comments on commit 5eb68cc

Please sign in to comment.