Skip to content

Commit 2c490e5

Browse files
committed
Files changed for version 3.15.4
1 parent 1404254 commit 2c490e5

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Diff for: RELEASING.md

+6-6
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.3
16+
git flow release start 3.15.4
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.3"
28+
git commit -am "Files changed for version 3.15.4"
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.3/cartodb.js
40-
http://libs.cartocdn.com/cartodb.js/v3/3.15.3/cartodb.js
39+
http://libs.cartocdn.com.s3.amazonaws.com/cartodb.js/v3/3.15.4/cartodb.js
40+
http://libs.cartocdn.com/cartodb.js/v3/3.15.4/cartodb.js
4141
http://libs.cartocdn.com.s3.amazonaws.com/cartodb.js/v3/3.13/cartodb.js
4242
http://libs.cartocdn.com/cartodb.js/v3/3.13/cartodb.js
4343
```
@@ -46,7 +46,7 @@ http://libs.cartocdn.com/cartodb.js/v3/3.13/cartodb.js
4646
- And to finish: close the release and push it.
4747

4848
```
49-
git flow release finish 3.15.3
49+
git flow release finish 3.15.4
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.3 and we want to go back to 3.13.4
78+
For example, if we are in 3.15.4 and we want to go back to 3.13.4
7979

8080
```
8181
git checkout 3.13.4

Diff for: doc/API.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1452,10 +1452,10 @@ Anytime you wish to push a stable version of your site to the web though, you ca
14521452
alert(cartodb.VERSION)
14531453
```
14541454
1455-
Once you know which version of CartoDB.js you're using, you can point your site to that release. If the current version of CartoDB.js is 3.15.3, the URL would be:
1455+
Once you know which version of CartoDB.js you're using, you can point your site to that release. If the current version of CartoDB.js is 3.15.4, the URL would be:
14561456
14571457
```html
1458-
<script src="http://libs.cartocdn.com/cartodb.js/v3/3.15.3/cartodb.js"></script>
1458+
<script src="http://libs.cartocdn.com/cartodb.js/v3/3.15.4/cartodb.js"></script>
14591459
```
14601460
14611461
You can do the same for the CSS documents we provide:

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cartodb.js",
3-
"version": "3.15.3",
3+
"version": "3.15.4",
44
"description": "CartoDB javascript library",
55
"repository": {
66
"type": "git",

Diff for: src/cartodb.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

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

8-
cdb.VERSION = "3.15.3";
8+
cdb.VERSION = "3.15.4";
99
cdb.DEBUG = false;
1010

1111
cdb.CARTOCSS_VERSIONS = {

0 commit comments

Comments
 (0)