Skip to content

Commit

Permalink
Files changed for version 3.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xavijam committed Sep 8, 2015
1 parent 2ee1e8c commit d8b7dc5
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
6 changes: 5 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
3.X ()
3.X.X ()


3.15.3 (08//09//2015)
* Display custom attribution of layers (#5216).
* Updated grunt-contrib-imagemin package version.

3.15.2 (01//09//2015)
* Take `visible` attribute into account when determining visibility of layers and serializing maps (#546)
Expand Down
12 changes: 6 additions & 6 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
- Create a new branch to prepare the release:

```
git flow release start 3.15.2
git flow release start 3.15.3
```

- Build CartoDB.js files, choosing the new version:
Expand All @@ -25,7 +25,7 @@ grunt release
- 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.

```
git commit -am "Files changed for version 3.15.2"
git commit -am "Files changed for version 3.15.3"
```

- Release it.
Expand All @@ -36,8 +36,8 @@ grunt publish

- Check if those files have been updated in the CDN:
```
http://libs.cartocdn.com.s3.amazonaws.com/cartodb.js/v3/3.15.2/cartodb.js
http://libs.cartocdn.com/cartodb.js/v3/3.15.2/cartodb.js
http://libs.cartocdn.com.s3.amazonaws.com/cartodb.js/v3/3.15.3/cartodb.js
http://libs.cartocdn.com/cartodb.js/v3/3.15.3/cartodb.js
http://libs.cartocdn.com.s3.amazonaws.com/cartodb.js/v3/3.13/cartodb.js
http://libs.cartocdn.com/cartodb.js/v3/3.13/cartodb.js
```
Expand All @@ -46,7 +46,7 @@ http://libs.cartocdn.com/cartodb.js/v3/3.13/cartodb.js
- And to finish: close the release and push it.

```
git flow release finish 3.15.2
git flow release finish 3.15.3
git push --all
git push --tags
```
Expand Down Expand Up @@ -75,7 +75,7 @@ grunt
grunt publish
```

For example, if we are in 3.15.2 and we want to go back to 3.13.4
For example, if we are in 3.15.3 and we want to go back to 3.13.4

```
git checkout 3.13.4
Expand Down
4 changes: 2 additions & 2 deletions doc/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -1452,10 +1452,10 @@ Anytime you wish to push a stable version of your site to the web though, you ca
alert(cartodb.VERSION)
```
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.2, the URL would be:
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:
```html
<script src="http://libs.cartocdn.com/cartodb.js/v3/3.15.2/cartodb.js"></script>
<script src="http://libs.cartocdn.com/cartodb.js/v3/3.15.3/cartodb.js"></script>
```
You can do the same for the CSS documents we provide:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cartodb.js",
"version": "3.15.2",
"version": "3.15.3",
"description": "CartoDB javascript library",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/cartodb.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

var cdb = root.cdb = {};

cdb.VERSION = "3.15.2";
cdb.VERSION = "3.15.3";
cdb.DEBUG = false;

cdb.CARTOCSS_VERSIONS = {
Expand Down

0 comments on commit d8b7dc5

Please sign in to comment.