Skip to content

Commit a722872

Browse files
committed
Files changed for version 3.15.9
1 parent f41a64c commit a722872

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
3.15.X (dd/mm/yyyy)
1+
3.15.9 (01/02/2016)
22
------
33
* When scrollwheel and zoom are disabled, map panning is disabled unless device is mobile.
44

RELEASING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
- Create a new branch to prepare the release:
1414

1515
```
16-
git flow release start 3.15.8
16+
git flow release start 3.15.9
1717
```
1818

1919
- Build CartoDB.js files, choosing the new version:
@@ -25,7 +25,7 @@ grunt release
2525
- Update the NEWS file and commit the changes. Take into account that new CartoDB.js version will be replaced in ```API.md```, ```RELEASING.md```, ```README.md```, ```package.json```, ```cartodb.js``` and ```examples``` files.
2626

2727
```
28-
git commit -am "Files changed for version 3.15.8"
28+
git commit -am "Files changed for version 3.15.9"
2929
```
3030

3131
- Release it.
@@ -36,8 +36,8 @@ grunt publish
3636

3737
- Check if those files have been updated in the CDN:
3838
```
39-
http://libs.cartocdn.com.s3.amazonaws.com/cartodb.js/v3/3.15.8/cartodb.js
40-
http://libs.cartocdn.com/cartodb.js/v3/3.15.8/cartodb.js
39+
http://libs.cartocdn.com.s3.amazonaws.com/cartodb.js/v3/3.15.9/cartodb.js
40+
http://libs.cartocdn.com/cartodb.js/v3/3.15.9/cartodb.js
4141
http://libs.cartocdn.com.s3.amazonaws.com/cartodb.js/v3/3.15/cartodb.js
4242
http://libs.cartocdn.com/cartodb.js/v3/3.15/cartodb.js
4343
```
@@ -46,7 +46,7 @@ http://libs.cartocdn.com/cartodb.js/v3/3.15/cartodb.js
4646
- And to finish: close the release and push it.
4747

4848
```
49-
git flow release finish 3.15.8
49+
git flow release finish 3.15.9
5050
git push --all
5151
git push --tags
5252
```
@@ -75,7 +75,7 @@ grunt
7575
grunt publish
7676
```
7777

78-
For example, if we are in 3.15.8 and we want to go back to 3.13.4
78+
For example, if we are in 3.15.9 and we want to go back to 3.13.4
7979

8080
```
8181
git checkout 3.13.4

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cartodb.js",
55
"themes/css/cartodb.css"
66
],
7-
"version": "3.15.8",
7+
"version": "3.15.9",
88
"homepage": "https://github.com/CartoDB/cartodb.js",
99
"authors": [
1010
"CartoDB <support@cartodb.com>"

examples/tutorial-google-driving-2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@
7272
window.onload = main;
7373
</script>
7474
</body>
75-
</html>
75+
</html>

examples/tutorial-google-driving.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<div id="map"></div>
2020

2121
<!-- include google maps library -->
22-
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=INSERTYOURAPIKEYHERE"></script>
22+
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js"></script>
2323

2424
<!-- include cartodb.js library -->
2525
<script src="http://libs.cartocdn.com/cartodb.js/v3/3.15/cartodb.js"></script>
@@ -90,4 +90,4 @@
9090

9191
</script>
9292
</body>
93-
</html>
93+
</html>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cartodb.js",
3-
"version": "3.15.8",
3+
"version": "3.15.9",
44
"description": "CartoDB javascript library",
55
"repository": {
66
"type": "git",

src/cartodb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
var cdb = root.cdb = {};
77

8-
cdb.VERSION = "3.15.8";
8+
cdb.VERSION = "3.15.9";
99
cdb.DEBUG = false;
1010

1111
cdb.CARTOCSS_VERSIONS = {

0 commit comments

Comments
 (0)