Skip to content

Commit f4d9536

Browse files
author
Brandon Tilley
committed
v1.1.1
1 parent 9344299 commit f4d9536

File tree

9 files changed

+24
-15
lines changed

9 files changed

+24
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v1.1.1 (2014/05/18)
2+
-------------------
3+
4+
* Set `planetaryjs` on root when using AMD
5+
16
v1.1.0 (2014/02/03)
27
-------------------
38

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "planetary.js",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"main": "dist/planetaryjs.min.js",
55
"description": "Awesome interactive globes for the web",
66
"homepage": "http://planetaryjs.com",

dist/planetaryjs-noplugins.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*! Planetary.js v1.1.0
1+
/*! Planetary.js v1.1.1
22
* Copyright (c) 2013 Brandon Tilley
33
*
44
* Released under the MIT license
5-
* Date: 2014-02-03T08:15:07.064Z
5+
* Date: 2014-05-18T17:34:29.344Z
66
*/
77
(function (root, factory) {
88
if (typeof define === 'function' && define.amd) {
9-
define(['d3', 'topojson'], factory);
9+
define(['d3', 'topojson'], function(d3, topojson) {
10+
return (root.planetaryjs = factory(d3, topojson, root));
11+
});
1012
} else if (typeof exports === 'object') {
1113
module.exports = factory(require('d3'), require('topojson'));
1214
} else {

dist/planetaryjs-noplugins.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/planetaryjs.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*! Planetary.js v1.1.0
1+
/*! Planetary.js v1.1.1
22
* Copyright (c) 2013 Brandon Tilley
33
*
44
* Released under the MIT license
5-
* Date: 2014-02-03T08:15:06.913Z
5+
* Date: 2014-05-18T17:34:29.246Z
66
*/
77
(function (root, factory) {
88
if (typeof define === 'function' && define.amd) {
9-
define(['d3', 'topojson'], factory);
9+
define(['d3', 'topojson'], function(d3, topojson) {
10+
return (root.planetaryjs = factory(d3, topojson, root));
11+
});
1012
} else if (typeof exports === 'object') {
1113
module.exports = factory(require('d3'), require('topojson'));
1214
} else {

dist/planetaryjs.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "planetary.js",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Awesome interactive globes for the web",
55
"main": "dist/planetaryjs",
66
"scripts": {

site/public/download/_data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"stable": {
33
"latest": {
4-
"version": "v1.1.0"
4+
"version": "v1.1.1"
55
}
66
},
77
"unstable": {

0 commit comments

Comments
 (0)