Skip to content

Commit 4026b64

Browse files
author
Lucas Wojciechowski
committed
0.12.0
1 parent 7057795 commit 4026b64

File tree

6 files changed

+27
-14
lines changed

6 files changed

+27
-14
lines changed

CHANGELOG.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,39 @@
22

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

5+
## 0.12.0 (Dec 2 2015)
6+
7+
#### API Improvements
8+
9+
* Added `line-offset` style property (#1778)
10+
511
## 0.11.5 (Dec 1 2015)
612

713
#### Bugfixes
814

9-
* Draw layers sorted by their order in they stylesheet (#1558)
15+
* Fixed unstable symbol layer render order when adding / removing layers (#1558)
16+
* Fire map loaded event even if raster tiles have errors
17+
* Fix panning animation during easeTo with zoom change
18+
* Fix pitching animation during flyTo
19+
* Fix pitching animation during easeTo
20+
* Prevent rotation from firing `mouseend` events (#1104)
1021

1122
#### API Improvements
1223

1324
* Fire `mousedown` and `mouseup` events (#1411)
1425
* Fire `movestart` and `moveend` when panning (#1658)
1526
* Added drag events (#1442)
27+
* Request webp images for mapbox:// raster tiles in chrome (#1725)
1628

1729
#### UX Improvements
1830

19-
* Request webp images for mapbox:// raster tiles in chrome
31+
* Added inertia to map rotation (#620)
2032

2133
## 0.11.4 (Nov 16 2015)
2234

2335
#### Bugfixes
2436

25-
* Fix alpha blending of alpha layers (#1684)
37+
* Fix alpha blending of alpha layers (#1684)
2638

2739
## 0.11.3 (Nov 10 2015)
2840

README.md

Lines changed: 7 additions & 6 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.5/mapbox-gl.js'></script>
11-
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.5/mapbox-gl.css' rel='stylesheet' />
10+
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.0/mapbox-gl.js'></script>
11+
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.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/).
@@ -82,14 +82,15 @@ To prepare a release:
8282

8383
* Merge `mb-pages` into `master`:
8484
* `git checkout master && git merge origin/mb-pages`
85-
* Update `CHANGELOG.md`
85+
* Update `CHANGELOG.md` with all changes since the last release
8686
* Update the version number in `package.json`, `README.md`, `bench/fps/site.js`, `_config.yml`, and `_config.mb-pages.yml`
8787
* Commit changes
88-
* Tag the release (`git tag vX.Y.Z && git push origin --tags`). The CI server will automatically publish tagged builds to the Mapbox CDN.
89-
* Publish the build to npm (`npm publish`)
88+
* Run `npm version patch` (or `major`, or `minor`) to bump the version number
89+
* Run `git push origin --tags`. The CI server will automatically publish tagged builds to the Mapbox CDN.
90+
* Run `npm publish` to publish the build to npm.
9091
* Merge `master` into `mb-pages` and publish documentation:
9192
* `git checkout mb-pages && git merge master && git push origin mb-pages`
92-
* [Create a GitHub release](https://github.com/mapbox/mapbox-gl-js/releases/new)
93+
* [Create a GitHub release](https://github.com/mapbox/mapbox-gl-js/releases/new) using the CHANGELOG
9394

9495
## [Style Reference](https://www.mapbox.com/mapbox-gl-style-spec/)
9596

_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.5
9+
version: v0.12.0
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.5
9+
version: v0.12.0
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.5/mapbox-gl.js',
3+
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.0/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.5/mapbox-gl.js',
6+
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.0/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.5",
4+
"version": "0.12.0",
55
"main": "js/mapbox-gl.js",
66
"license": "BSD-3-Clause",
77
"repository": {

0 commit comments

Comments
 (0)