Skip to content

Commit

Permalink
Version bump to 0.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
gionkunz committed Feb 23, 2016
1 parent 3f8e629 commit 1083245
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 8 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
v0.9.7 - 23 Feb 2016
--------------------
- Fixed bug with label and grid rendering on axis, fixes #621

v0.9.6 - 22 Feb 2016
--------------------
- Added dual licensing WTFPL and MIT, built new version <Gion Kunz>
- Adding unminified CSS to dist output, fixes #506 <Gion Kunz>
- Refactored namespaced attribute handling, fixes #584 <Gion Kunz>
- Allow charts to be created without data and labels, fixes #598, fixes #588, fixes #537, fixes #425 <Gion Kunz> <Carlos Morales>
- Removed onlyInteger setting from default bar chart settings, fixes #423 <Gion Kunz>
- Removed serialization of values on line chart areas, fixes #424 <Gion Kunz>
- Removed workaround and fallback for SVG element width and height calculations, fixes #592 <Gion Kunz>
- Render 0 in ct:value attribute for line graphs <Paul Salaets>
- Allow empty pie chart values to be ignored <Stephen>
- Fix #527 Pie render issue with small angles. <hansmaad>
- Small fix for stacked bars with 'holes' in the data <medzes>


v0.9.5 - 14 Nov 2015
--------------------
- Added 'fillHoles' option for line graphs, which continues the line smoothly through data holes (Thanks to Joshua Warner !)
Expand Down
8 changes: 4 additions & 4 deletions dist/chartist.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
}(this, function () {

/* Chartist.js 0.9.6
/* Chartist.js 0.9.7
* Copyright © 2016 Gion Kunz
* Free to use under either the WTFPL license or the MIT license.
* https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-WTFPL
Expand All @@ -26,7 +26,7 @@
* @module Chartist.Core
*/
var Chartist = {
version: '0.9.6'
version: '0.9.7'
};

(function (window, document, Chartist) {
Expand Down Expand Up @@ -2758,7 +2758,7 @@ var Chartist = {
}

// Skip grid lines and labels where interpolated label values are falsey (execpt for 0)
if(!Chartist.isFalseyButZero(labelValues[index]) && !labelValues[index] === '') {
if(Chartist.isFalseyButZero(labelValues[index]) && labelValues[index] !== '') {
return;
}

Expand Down Expand Up @@ -3332,7 +3332,7 @@ var Chartist = {
* ]
* };
*
* // In adition to the regular options we specify responsive option overrides that will override the default configutation based on the matching media queries.
* // In addition to the regular options we specify responsive option overrides that will override the default configutation based on the matching media queries.
* var responsiveOptions = [
* ['screen and (min-width: 641px) and (max-width: 1024px)', {
* showPoint: false,
Expand Down
4 changes: 2 additions & 2 deletions dist/chartist.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/chartist.min.js.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.9.6",
"version": "0.9.7",
"author": "Gion Kunz",
"homepage": "https://gionkunz.github.io/chartist-js",
"repository": {
Expand Down

0 comments on commit 1083245

Please sign in to comment.