Skip to content

Commit

Permalink
Files changed for version 3.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicklas Gummesson committed Apr 7, 2015
1 parent fbeb2f1 commit 7d315ca
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions NEWS
@@ -1,3 +1,7 @@
3.13.2 (07//04//2015)
* Fix double escaping on infowindows
* Fix a-tag's target attribute not working

3.13.1 (06//04//2015)
* Allows to request a Static Map of a password protected visualization

Expand Down
12 changes: 6 additions & 6 deletions RELEASING.md
Expand Up @@ -13,7 +13,7 @@
- Create a new branch to prepare the release:

```
git flow release start 3.13.1
git flow release start 3.13.2
```

- Build CartoDB.js files, choosing the new version:
Expand All @@ -25,7 +25,7 @@ grunt build
- 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.13.1"
git commit -am "Files changed for version 3.13.2"
```

- 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.13.1/cartodb.js
http://libs.cartocdn.com/cartodb.js/v3/3.13.1/cartodb.js
http://libs.cartocdn.com.s3.amazonaws.com/cartodb.js/v3/3.13.2/cartodb.js
http://libs.cartocdn.com/cartodb.js/v3/3.13.2/cartodb.js
http://libs.cartocdn.com.s3.amazonaws.com/cartodb.js/v3/3.12/cartodb.js
http://libs.cartocdn.com/cartodb.js/v3/3.12/cartodb.js
```
Expand All @@ -46,7 +46,7 @@ http://libs.cartocdn.com/cartodb.js/v3/3.12/cartodb.js
- And to finish: close the release and push it.

```
git flow release finish 3.13.1
git flow release finish 3.13.2
git push --all
git push --tags
```
Expand All @@ -69,7 +69,7 @@ grunt build
grunt publish
```

For example, if we are in 3.13.1 and we want to go back to 3.12.14
For example, if we are in 3.13.2 and we want to go back to 3.12.14

```
git checkout 3.12.14
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "cartodb.js",
"version": "3.13.1",
"version": "3.13.2",
"description": "CartoDB javascript library",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/cartodb.js
Expand Up @@ -5,7 +5,7 @@

var cdb = root.cdb = {};

cdb.VERSION = "3.13.1";
cdb.VERSION = "3.13.2";
cdb.DEBUG = false;

cdb.CARTOCSS_VERSIONS = {
Expand Down

0 comments on commit 7d315ca

Please sign in to comment.