Skip to content

Commit

Permalink
v0.11.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mcwhittemore committed Dec 1, 2015
1 parent 4ee411f commit 55b83f4
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

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

## 0.11.6 (Dec 1 2015)

#### Bugfixes

* Draw layers sorted by their order in they stylesheet (#1558)

#### API Improvements

* Fire `mousedown` and `mouseup` events (#1411)
* Fire `movestart` and `moveend` when panning (#1658)
* Added drag events (#1442)

#### UX Improvements

* Request webp images for mapbox:// raster tiles in chrome

## 0.11.4 (Nov 16 2015)

#### Bugfixes
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ A WebGL JavaScript interactive maps library that can render [Mapbox Vector Tiles
Include the source via HTML tags:

```html
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.4/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.4/mapbox-gl.css' rel='stylesheet' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.6/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.6/mapbox-gl.css' rel='stylesheet' />
```

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/).
Expand Down Expand Up @@ -84,6 +84,7 @@ To prepare a release:
* `git checkout master && git merge origin/mb-pages`
* Update `CHANGELOG.md`
* Update the version number in `package.json`, `README.md`, `bench/fps/site.js`, `_config.yml`, and `_config.mb-pages.yml`
* Commit changes
* Tag the release (`git tag vX.Y.Z && git push origin --tags`). The CI server will automatically publish tagged builds to the Mapbox CDN.
* Publish the build to npm (`npm publish`)
* Merge `master` into `mb-pages` and publish documentation:
Expand Down
2 changes: 1 addition & 1 deletion _config.mb-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ permalink: /:categories/:title
baseurl: /mapbox-gl-js
highlighter: pygments
excerpt_separator: ""
version: v0.11.4
version: v0.11.6
rdiscount:
extensions: [smart]
exclude: [dist]
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ permalink: /:categories/:title
baseurl: /mapbox-gl-js
highlighter: pygments
excerpt_separator: ""
version: v0.11.4
version: v0.11.6
mapboxglbase: /mapbox-gl-js/dist
rdiscount:
extensions: [smart]
4 changes: 2 additions & 2 deletions bench/fps/site.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
var urls = [
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.10.0/mapbox-gl.js',
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.4/mapbox-gl.js',
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.6/mapbox-gl.js',
'/dist/mapbox-gl.js',
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.10.0/mapbox-gl.js',
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.4/mapbox-gl.js',
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.6/mapbox-gl.js',
'/dist/mapbox-gl.js'
];

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.11.4",
"version": "0.11.6",
"main": "js/mapbox-gl.js",
"license": "BSD-3-Clause",
"repository": {
Expand Down

0 comments on commit 55b83f4

Please sign in to comment.