Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Tilley committed May 18, 2014
1 parent 9344299 commit f4d9536
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 15 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v1.1.1 (2014/05/18)
-------------------

* Set `planetaryjs` on root when using AMD

v1.1.0 (2014/02/03)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "planetary.js",
"version": "1.1.0",
"version": "1.1.1",
"main": "dist/planetaryjs.min.js",
"description": "Awesome interactive globes for the web",
"homepage": "http://planetaryjs.com",
Expand Down
8 changes: 5 additions & 3 deletions dist/planetaryjs-noplugins.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
/*! Planetary.js v1.1.0
/*! Planetary.js v1.1.1
* Copyright (c) 2013 Brandon Tilley
*
* Released under the MIT license
* Date: 2014-02-03T08:15:07.064Z
* Date: 2014-05-18T17:34:29.344Z
*/
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define(['d3', 'topojson'], factory);
define(['d3', 'topojson'], function(d3, topojson) {
return (root.planetaryjs = factory(d3, topojson, root));
});
} else if (typeof exports === 'object') {
module.exports = factory(require('d3'), require('topojson'));
} else {
Expand Down
4 changes: 2 additions & 2 deletions dist/planetaryjs-noplugins.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions dist/planetaryjs.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
/*! Planetary.js v1.1.0
/*! Planetary.js v1.1.1
* Copyright (c) 2013 Brandon Tilley
*
* Released under the MIT license
* Date: 2014-02-03T08:15:06.913Z
* Date: 2014-05-18T17:34:29.246Z
*/
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define(['d3', 'topojson'], factory);
define(['d3', 'topojson'], function(d3, topojson) {
return (root.planetaryjs = factory(d3, topojson, root));
});
} else if (typeof exports === 'object') {
module.exports = factory(require('d3'), require('topojson'));
} else {
Expand Down
4 changes: 2 additions & 2 deletions dist/planetaryjs.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "planetary.js",
"version": "1.1.0",
"version": "1.1.1",
"description": "Awesome interactive globes for the web",
"main": "dist/planetaryjs",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion site/public/download/_data.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stable": {
"latest": {
"version": "v1.1.0"
"version": "v1.1.1"
}
},
"unstable": {
Expand Down

0 comments on commit f4d9536

Please sign in to comment.