Skip to content

Commit

Permalink
fix #40 missing type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
elfalem committed Jul 13, 2021
1 parent 180c8cf commit 81fb4ba
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.1] - 2021-07-12
### Fixed
- Fix missing type declaration in package #40

## [0.8.0] - 2021-05-08
### Added
- Add Type Declaration file #38
Expand Down Expand Up @@ -62,7 +66,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.8.0...HEAD
[Unreleased]: https://github.com/elfalem/Leaflet.curve/compare/v0.8.1...HEAD
[0.8.1]: https://github.com/elfalem/Leaflet.curve/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/elfalem/Leaflet.curve/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/elfalem/Leaflet.curve/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/elfalem/Leaflet.curve/compare/v0.5.2...v0.6.0
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "@elfalem/leaflet-curve",
"version": "0.8.0",
"version": "0.8.1",
"description": "A Leaflet plugin for drawing Bézier curves and other complex shapes.",
"main": "dist/leaflet.curve.js",
"types": "types/leaflet.curve.d.ts",
"scripts": {
"build": "webpack"
},
"files": [
"dist/leaflet.curve.js"
"dist/leaflet.curve.js",
"types/leaflet.curve.d.ts"
],
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/leaflet.curve.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Leaflet.curve v0.8.0 - a plugin for Leaflet mapping library. https://github.com/elfalem/Leaflet.curve
* Leaflet.curve v0.8.1 - a plugin for Leaflet mapping library. https://github.com/elfalem/Leaflet.curve
* (c) elfalem 2015-2021
*/
/*
Expand Down

0 comments on commit 81fb4ba

Please sign in to comment.