Skip to content

Commit

Permalink
Updated to version 0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Gion Kunz committed Aug 10, 2014
1 parent 48f820e commit bea0d43
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chartist",
"version": "0.1.9",
"version": "0.1.10",
"main": [
"./libdist/chartist.min.js",
"./libdist/chartist.min.css"
Expand Down
6 changes: 3 additions & 3 deletions libdist/chartist.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
module.exports = factory();
}
else if(typeof define === 'function' && define.amd) {
define('chartist', [], factory);
define([], factory);
}
else {
root['Chartist'] = factory();
}
}(this, function() {

/* Chartist.js 0.1.9
/* Chartist.js 0.1.10
* Copyright © 2014 Gion Kunz
* Free to use under the WTFPL license.
* http://www.wtfpl.net/
Expand All @@ -19,7 +19,7 @@

// This object is prepared for export via UMD
var Chartist = {};
Chartist.version = '0.1.9';
Chartist.version = '0.1.10';

(function (window, document, Chartist) {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion libdist/chartist.min.css

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

4 changes: 2 additions & 2 deletions libdist/chartist.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion libdist/chartist.min.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "chartist",
"title": "Chartist.js",
"description": "Simple, responsive charts",
"version": "0.1.9",
"version": "0.1.10",
"author": "Gion Kunz",
"homepage": "https://gionkunz.github.io/chartist-js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion source/scripts/chartist.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// This object is prepared for export via UMD
var Chartist = {};
Chartist.version = '0.1.9';
Chartist.version = '0.1.10';

(function (window, document, Chartist) {
'use strict';
Expand Down

0 comments on commit bea0d43

Please sign in to comment.