Skip to content

Commit

Permalink
chore(version): bump to v0.4.20
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Feb 11, 2018
1 parent 0a31994 commit 315ecac
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bmp.yml
@@ -1,5 +1,5 @@
---
version: 0.4.19
version: 0.4.20
commit: 'chore(version): bump to v%.%.%'
files:
src/core.js: 'version: "%.%.%"'
Expand Down
6 changes: 3 additions & 3 deletions c3.js
@@ -1,4 +1,4 @@
/* @license C3.js v0.4.19 | (c) C3 Team and other contributors | http://c3js.org/ */
/* @license C3.js v0.4.20 | (c) C3 Team and other contributors | http://c3js.org/ */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
Expand Down Expand Up @@ -1002,7 +1002,7 @@ c3_axis_fn.redraw = function redraw(transitions, isHidden) {
transitions.axisSubX.call($$.subXAxis);
};

var c3 = { version: "0.4.19" };
var c3 = { version: "0.4.20" };

var c3_chart_fn;
var c3_chart_internal_fn;
Expand Down Expand Up @@ -4754,7 +4754,7 @@ c3_chart_internal_fn.redrawArc = function (duration, durationForExit, withTransf
var d = {
data: [{ value: config.gauge_max }],
startAngle: config.gauge_startingAngle,
endAngle: -1 * config.gauge_startingAngle
endAngle: -1 * config.gauge_startingAngle * (config.gauge_fullCircle ? Math.PI : 1)
};
return $$.getArc(d, true, true);
});
Expand Down
4 changes: 2 additions & 2 deletions c3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion component.json
Expand Up @@ -2,7 +2,7 @@
"name": "c3",
"repo": "masayuki0812/c3",
"description": "A D3-based reusable chart library",
"version": "0.4.19",
"version": "0.4.20",
"keywords": [],
"dependencies": {
"mbostock/d3": "v3.5.6"
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "c3",
"version": "0.4.19",
"version": "0.4.20",
"description": "D3-based reusable chart library",
"main": "c3.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/core.js
Expand Up @@ -2,7 +2,7 @@ import Axis from './axis';
import CLASS from './class';
import { isValue, isFunction, isString, isUndefined, isDefined, ceil10, asHalfPixel, diffDomain, isEmpty, notEmpty, getOption, hasValue, sanitise, getPathBox } from './util';

export var c3 = { version: "0.4.19" };
export var c3 = { version: "0.4.20" };

export var c3_chart_fn;
export var c3_chart_internal_fn;
Expand Down

0 comments on commit 315ecac

Please sign in to comment.