Skip to content

Commit ae44326

Browse files
committed
v0.11.5
1 parent 4ee411f commit ae44326

File tree

6 files changed

+24
-7
lines changed

6 files changed

+24
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
An in-progress version being developed in the `master` branch.
44

5+
## 0.11.5 (Dec 1 2015)
6+
7+
#### Bugfixes
8+
9+
* Draw layers sorted by their order in they stylesheet (#1558)
10+
11+
#### API Improvements
12+
13+
* Fire `mousedown` and `mouseup` events (#1411)
14+
* Fire `movestart` and `moveend` when panning (#1658)
15+
* Added drag events (#1442)
16+
17+
#### UX Improvements
18+
19+
* Request webp images for mapbox:// raster tiles in chrome
20+
521
## 0.11.4 (Nov 16 2015)
622

723
#### Bugfixes

README.md

Lines changed: 3 additions & 2 deletions
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.11.4/mapbox-gl.js'></script>
11-
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.4/mapbox-gl.css' rel='stylesheet' />
10+
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.5/mapbox-gl.js'></script>
11+
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.5/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/).
@@ -84,6 +84,7 @@ To prepare a release:
8484
* `git checkout master && git merge origin/mb-pages`
8585
* Update `CHANGELOG.md`
8686
* Update the version number in `package.json`, `README.md`, `bench/fps/site.js`, `_config.yml`, and `_config.mb-pages.yml`
87+
* Commit changes
8788
* Tag the release (`git tag vX.Y.Z && git push origin --tags`). The CI server will automatically publish tagged builds to the Mapbox CDN.
8889
* Publish the build to npm (`npm publish`)
8990
* Merge `master` into `mb-pages` and publish documentation:

_config.mb-pages.yml

Lines changed: 1 addition & 1 deletion
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.11.4
9+
version: v0.11.5
1010
rdiscount:
1111
extensions: [smart]
1212
exclude: [dist]

_config.yml

Lines changed: 1 addition & 1 deletion
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.11.4
9+
version: v0.11.5
1010
mapboxglbase: /mapbox-gl-js/dist
1111
rdiscount:
1212
extensions: [smart]

bench/fps/site.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
var urls = [
22
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.10.0/mapbox-gl.js',
3-
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.4/mapbox-gl.js',
3+
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.5/mapbox-gl.js',
44
'/dist/mapbox-gl.js',
55
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.10.0/mapbox-gl.js',
6-
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.4/mapbox-gl.js',
6+
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.5/mapbox-gl.js',
77
'/dist/mapbox-gl.js'
88
];
99

package.json

Lines changed: 1 addition & 1 deletion
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.11.4",
4+
"version": "0.11.5",
55
"main": "js/mapbox-gl.js",
66
"license": "BSD-3-Clause",
77
"repository": {

0 commit comments

Comments
 (0)