Skip to content

Commit

Permalink
v0.32.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Wojciechowski committed Jan 26, 2017
1 parent a659636 commit de6af06
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ To use the [vector tiles](https://www.mapbox.com/maps/) and styles hosted on [ma
<!DOCTYPE html>
<html>
<head>
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.31.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.31.0/mapbox-gl.css' rel='stylesheet' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.32.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.32.0/mapbox-gl.css' rel='stylesheet' />
</head>

<body>
Expand Down Expand Up @@ -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

Expand All @@ -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)

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": "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": {
Expand Down

0 comments on commit de6af06

Please sign in to comment.