Skip to content

Commit

Permalink
Files changed for version 3.14.4
Browse files Browse the repository at this point in the history
  • Loading branch information
alonsogarciapablo committed Jun 10, 2015
1 parent e5a1848 commit 926a9a0
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
3.X.X ()
3.14.4 (10//06//2015)
* Do not enable layer interaction if tooltip is empty (#513)
* Replaces minified carto.js with uncompressed version (#516)

3.14.3 (29//05//2015)
* Hide <img> tag of infowindow covers when the url is invalid.
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.14.3
git flow release start 3.14.4
```

- 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.14.3"
git commit -am "Files changed for version 3.14.4"
```

- 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.14.3/cartodb.js
http://libs.cartocdn.com/cartodb.js/v3/3.14.3/cartodb.js
http://libs.cartocdn.com.s3.amazonaws.com/cartodb.js/v3/3.14.4/cartodb.js
http://libs.cartocdn.com/cartodb.js/v3/3.14.4/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.14.3
git flow release finish 3.14.4
git push --all
git push --tags
```
Expand All @@ -69,7 +69,7 @@ grunt build
grunt publish
```

For example, if we are in 3.14.3 and we want to go back to 3.13.4
For example, if we are in 3.14.4 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 @@ -1402,10 +1402,10 @@ Or, by running the following in your code:
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.14.3, 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.14.4, the URL would be:
```html
<script src="http://libs.cartocdn.com/cartodb.js/v3/3.14.3/cartodb.js"></script>
<script src="http://libs.cartocdn.com/cartodb.js/v3/3.14.4/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.14.3",
"version": "3.14.4",
"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.14.3";
cdb.VERSION = "3.14.4";
cdb.DEBUG = false;

cdb.CARTOCSS_VERSIONS = {
Expand Down
2 changes: 1 addition & 1 deletion test/SpecRunner.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

<script src="../vendor/lzma.js"></script>

<script src="../vendor/mod/carto.js"></script>
<script src="../vendor/mod/carto.uncompressed.js"></script>

<script src="../vendor/mod/torque.uncompressed.js"></script>

Expand Down

0 comments on commit 926a9a0

Please sign in to comment.