Skip to content

Commit e5fb767

Browse files
author
Lucas Wojciechowski
committed
v0.14.0
1 parent 2556364 commit e5fb767

File tree

7 files changed

+38
-11
lines changed

7 files changed

+38
-11
lines changed

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## 0.14.0 (Feb 8 2016)
2+
3+
#### Breaking Changes
4+
5+
Switch `GeoJSONSource` clustering options from being measured in extent-units to pixels (#2026)
6+
7+
#### New Features & Improvements
8+
9+
Improved error message for invalid colors (#2006)
10+
Added support for tiles with variable extents (#2010)
11+
Improved `filter` performance and maximum size (#2024)
12+
Changed circle rendering such that all geometry nodes are drawn, not just the geometry's outer ring (#2027)
13+
Added `Map#getStyle` method (#1982)
14+
15+
#### Bugfixes
16+
17+
Fixed bug causing WebGL contexts to be "used up" by calling `mapboxgl.supported()` (#2018)
18+
Fixed non-deterministic symbol z-order sorting (#2023)
19+
Fixed garbled labels while zooming (#2012)
20+
Fixed icon jumping when touching trackpad with two fingers (#1990)
21+
Fixed overzoomed collision debug labels (#2033)
22+
Fixed dashes sliding along their line during zooming (#2039)
23+
Fixed overscaled `minzoom` setting for GeoJSON sources (#1651)
24+
Fixed overly-strict function validation for duplicate stops (#2075)
25+
Fixed crash due to `performance.now` not being present on some browsers (#2056)
26+
Fixed the unsetting of paint properties (#2037)
27+
Fixed bug causing multiple interaction handler event listeners to be attached (#2069)
28+
Fixed bug causing only a single debug box to be drawn (#2034)
29+
130
## 0.13.1 (Jan 27 2016)
231

332
#### Bugfixes

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ A WebGL JavaScript interactive maps library that can render [Mapbox Vector Tiles
77
Include the source via HTML tags:
88

99
```html
10-
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.13.1/mapbox-gl.js'></script>
11-
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.13.1/mapbox-gl.css' rel='stylesheet' />
10+
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.0/mapbox-gl.js'></script>
11+
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.0/mapbox-gl.css' rel='stylesheet' />
1212
```
1313

1414
For more information, see the [API documentation](https://www.mapbox.com/mapbox-gl-js/api/) and [examples](https://www.mapbox.com/mapbox-gl-js/examples/).

RELEASE.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,12 @@ Test at least the following examples before continuing
4545
- [Dispay driving directions](http://127.0.0.1:4000/mapbox-gl-js/example/mapbox-gl-directions/)
4646
- [Set a point after Geocoder result](http://127.0.0.1:4000/mapbox-gl-js/example/point-from-geocoder-result/)
4747

48-
## Choose version number
49-
50-
Choose a new version number, respecting [semver](http://semver.org/).
51-
5248
## Update `CHANGELOG.md`
5349

5450
Update `CHANGELOG.md` with all changes since the last release. A list of commits is available on the [GitHub Releases page](https://github.com/mapbox/mapbox-gl-js/releases) through a link that says "X commits to master since this release"
5551

52+
Look over the changes and choose a new version number, respecting [semver](http://semver.org/) ("patch" if there are no new features, "minor" if there are new features).
53+
5654
## Update version number
5755

5856
Update the version number in `package.json`, `README.md`, `bench/fps/site.js`, `_config.yml`, and `_config.mb-pages.yml`.

_config.mb-pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permalink: /:categories/:title
66
baseurl: /mapbox-gl-js
77
highlighter: pygments
88
excerpt_separator: ""
9-
version: v0.13.1
9+
version: v0.14.0
1010
rdiscount:
1111
extensions: [smart]
1212
exclude: [dist]

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permalink: /:categories/:title
66
baseurl: /mapbox-gl-js
77
highlighter: pygments
88
excerpt_separator: ""
9-
version: v0.13.1
9+
version: v0.14.0
1010
mapboxglbase: /mapbox-gl-js/dist
1111
rdiscount:
1212
extensions: [smart]

bench/fps/site.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var urls = [
2-
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.13.1/mapbox-gl.js',
2+
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.0/mapbox-gl.js',
33
'/dist/mapbox-gl.js',
4-
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.13.1/mapbox-gl.js',
4+
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.0/mapbox-gl.js',
55
'/dist/mapbox-gl.js'
66
];
77

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mapbox-gl",
33
"description": "A WebGL interactive maps library",
4-
"version": "0.13.1",
4+
"version": "0.14.0",
55
"main": "js/mapbox-gl.js",
66
"license": "BSD-3-Clause",
77
"repository": {

0 commit comments

Comments
 (0)