diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ef821991c8..e965cd0b93d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,28 @@ -## master +## 0.32.0 (Jan 26, 2017) #### Deprecation Notices + - [Style classes](https://www.mapbox.com/mapbox-gl-style-spec/#layer-paint.*) are deprecated and will be removed in an upcoming release of Mapbox GL JS. +#### New Features + + - Add `Map#isSourceLoaded` method #4033 + - Automatically reload tiles based on their `Expires` and `Cache-Control` HTTP headers #3944 + - Add `around=center` option to `scrollZoom` and `touchZoomRotate` interaction handlers #3876 + - Add support for [`mapbox-gl-rtl-text` plugin](https://github.com/mapbox/mapbox-gl-rtl-text) to support right-to-left scripts #3758 + - Add `canvas` source type #3765 + - Add `Map#isMoving` method #2792 + +#### Bug Fixes + + - Fix bug causing garbled text on zoom #3962 + - Fix bug causing crash in Firefox and Mobile Safari when rendering a large map #4037 + - Fix bug causing raster tiles to flicker during zoom #2467 + - Fix bug causing exception when unsetting and resetting fill-outline-color #3657 + - Fix memory leak when removing raster sources #3951 + - Fix bug causing exception when when zooming in / out on empty GeoJSON tile #3985 + - Fix line join artifacts at very sharp angles #4008 + ## 0.31.0 (Jan 10 2017) #### New Features diff --git a/INSTALL.md b/INSTALL.md index 1a1ec27341e..240e477b771 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -10,8 +10,8 @@ To use the [vector tiles](https://www.mapbox.com/maps/) and styles hosted on [ma - - + + @@ -47,7 +47,7 @@ var map = new mapboxgl.Map({ }); ``` -Add the CSS file at `node_modules/mapbox-gl/dist/mapbox-gl.css` or `https://api.tiles.mapbox.com/mapbox-gl-js/v0.31.0/mapbox-gl.css`. +Add the CSS file at `node_modules/mapbox-gl/dist/mapbox-gl.css` or `https://api.tiles.mapbox.com/mapbox-gl-js/v0.32.0/mapbox-gl.css`. ### Using Mapbox with other module systems @@ -63,7 +63,7 @@ If you're using the ES6 module system (e.g. with [Rollup](https://github.com/rol import mapboxgl from 'mapbox-gl/dist/mapbox-gl.js'; ``` -Add the CSS file at `node_modules/mapbox-gl/dist/mapbox-gl.css` or `https://api.tiles.mapbox.com/mapbox-gl-js/v0.31.0/mapbox-gl.css`. +Add the CSS file at `node_modules/mapbox-gl/dist/mapbox-gl.css` or `https://api.tiles.mapbox.com/mapbox-gl-js/v0.32.0/mapbox-gl.css`. ### Using Mapbox with [CSP](https://developer.mozilla.org/en-US/docs/Web/Security/CSP) diff --git a/package.json b/package.json index 0311bbc70eb..8dce4572983 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mapbox-gl", "description": "A WebGL interactive maps library", - "version": "0.31.0", + "version": "0.32.0", "main": "js/mapbox-gl.js", "license": "BSD-3-Clause", "repository": {