Skip to content

Commit

Permalink
Fix bad merge in css rename, bump version to 1.15.1 (#195)
Browse files Browse the repository at this point in the history
* Fix bad merge, bump version to 1.15.1

* Fix changelog

Related to #185 and #83
  • Loading branch information
HarelM authored Jul 7, 2021
1 parent 0b30d43 commit b23ebea
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@

### 🐞 Bug fixes

- *...Add new stuff here...*

## 1.15.1

### 🐞 Bug fixes

- Add void return for some method declaration to match TS strict mode (#194)
- Fix css leftovers (#83)

## 1.15.0

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "maplibre-gl",
"description": "BSD licensed community fork of mapbox-gl, a WebGL interactive maps library",
"version": "1.15.0",
"version": "1.15.1",
"main": "dist/maplibre-gl.js",
"style": "dist/maplibre-gl.css",
"license": "BSD-3-Clause",
Expand Down
2 changes: 1 addition & 1 deletion src/ui/map.js
Original file line number Diff line number Diff line change
Expand Up @@ -2286,7 +2286,7 @@ class Map extends Camera {
const container = this._container;
container.classList.add('maplibregl-map');

const canvasContainer = this._canvasContainer = DOM.create('div', 'mapboxgl-canvas-container', container);
const canvasContainer = this._canvasContainer = DOM.create('div', 'maplibregl-canvas-container', container);
if (this._interactive) {
canvasContainer.classList.add('maplibregl-interactive');
}
Expand Down

0 comments on commit b23ebea

Please sign in to comment.