From 6e94251d51bd094b88ac499a4b005a5ea9f8792d Mon Sep 17 00:00:00 2001 From: Jonathan Lurie Date: Mon, 8 Apr 2024 10:21:14 +0200 Subject: [PATCH] Version update --- CHANGELOG.md | 4 ++++ package.json | 2 +- src/index.ts | 2 -- 3 files changed, 5 insertions(+), 3 deletions(-) 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;