Skip to content

Commit d6af325

Browse files
author
Lucas Wojciechowski
committed
v0.12.4
1 parent 9eadd41 commit d6af325

File tree

6 files changed

+15
-10
lines changed

6 files changed

+15
-10
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.12.4 (Jan 19 2016)
2+
3+
#### Bugfixes
4+
5+
Fix elementGroups null value errors (#1933)
6+
Fix some glyph atlas overflow cases (#1923)
7+
18
## 0.12.3 (Jan 14 2016)
29

310
#### API Improvements

README.md

+3-3
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.12.3/mapbox-gl.js'></script>
11-
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.3/mapbox-gl.css' rel='stylesheet' />
10+
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.4/mapbox-gl.js'></script>
11+
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.4/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/).
@@ -83,7 +83,7 @@ To prepare a release:
8383
* Run `git checkout master && git merge origin/mb-pages` to merge `mb-pages` into `master`
8484
* 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"
8585
* Update the version number in `package.json`, `README.md`, `bench/fps/site.js`, `_config.yml`, and `_config.mb-pages.yml`
86-
* Run `git commit -m "vX.Y.Z"` to commit changes
86+
* Run `git commit -a -m "vX.Y.Z"` to commit changes
8787
* Run `git tag vX.Y.Z` to tag the release
8888
* Run `git push origin && git push origin --tags` to push the new commit and tag to GitHub
8989
* Create a [GitHub release](https://github.com/mapbox/mapbox-gl-js/releases/new) using the tag you just pushed and the text in `CHANGELOG.md`

_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.12.3
9+
version: v0.12.4
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.12.3
9+
version: v0.12.4
1010
mapboxglbase: /mapbox-gl-js/dist
1111
rdiscount:
1212
extensions: [smart]

bench/fps/site.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
var urls = [
2-
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.10.0/mapbox-gl.js',
3-
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.3/mapbox-gl.js',
2+
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.4/mapbox-gl.js',
43
'/dist/mapbox-gl.js',
5-
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.10.0/mapbox-gl.js',
6-
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.3/mapbox-gl.js',
4+
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.4/mapbox-gl.js',
75
'/dist/mapbox-gl.js'
86
];
97

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.12.3",
4+
"version": "0.12.4",
55
"main": "js/mapbox-gl.js",
66
"license": "BSD-3-Clause",
77
"repository": {

0 commit comments

Comments
 (0)