Browse Source

chore(version): bump to v0.4.20

pull/2292/head v0.4.20
Yoshiya Hinosawa 7 years ago
parent
commit
315ecac0a0
  1. 2
      .bmp.yml
  2. 6
      c3.js
  3. 4
      c3.min.js
  4. 2
      component.json
  5. 2
      package.json
  6. 2
      src/core.js

2
.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: "%.%.%"'

6
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) :
@ -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;
@ -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);
});

4
c3.min.js vendored

File diff suppressed because one or more lines are too long

2
component.json

@ -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"

2
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": {

2
src/core.js

@ -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;

Loading…
Cancel
Save