diff --git a/CHANGELOG.md b/CHANGELOG.md index 4860e00..61e6523 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ ### Bug Fixes ### Others +## 2.0.1 +### Bug Fixes +- Bundling issue solved by [#79](https://github.com/maptiler/maptiler-sdk-js/pull/79) + ## 2.0.0 ### New Features - Updating with MapLibre GL JS v4.1 diff --git a/package.json b/package.json index 2558fcf..289bc65 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@maptiler/sdk", - "version": "2.0.0", + "version": "2.0.1", "description": "The Javascript & TypeScript map SDK tailored for MapTiler Cloud", "module": "dist/maptiler-sdk.mjs", "types": "dist/maptiler-sdk.d.ts", diff --git a/src/index.ts b/src/index.ts index 9065a02..1d46080 100644 --- a/src/index.ts +++ b/src/index.ts @@ -73,8 +73,6 @@ function getMapLibreVersion(): string { return maplibregl.getVersion(); } -console.log("maplibregl", maplibregl); - // We still want to export maplibregl.Map, but as a different name const MapMLGL = maplibregl.Map; const MarkerMLGL = maplibregl.Marker;