Skip to content

Commit e4ff9d9

Browse files
committed
chore(version): bump to v0.4.14
1 parent c343243 commit e4ff9d9

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

.bmp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
version: 0.4.13
2+
version: 0.4.14
33
commit: 'chore(version): bump to v%.%.%'
44
files:
55
src/core.js: 'version: "%.%.%"'

c3.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ Axis.prototype.redraw = function redraw(transitions, isHidden) {
850850
transitions.axisSubX.call($$.subXAxis);
851851
};
852852

853-
var c3$1 = { version: "0.4.13" };
853+
var c3$1 = { version: "0.4.14" };
854854

855855
var c3_chart_fn;
856856
var c3_chart_internal_fn;
@@ -4816,7 +4816,7 @@ c3_chart_internal_fn.convertDataToTargets = function (data, appendXs) {
48164816
var xKey = $$.getXKey(id), rawX = d[xKey],
48174817
value = d[id] !== null && !isNaN(d[id]) ? +d[id] : null, x;
48184818
// use x as categories if custom x and categorized
4819-
if ($$.isCustomX() && $$.isCategorized() && index === 0 && !isUndefined(rawX)) {
4819+
if ($$.isCustomX() && $$.isCategorized() && !isUndefined(rawX)) {
48204820
if (index === 0 && i === 0) {
48214821
config.axis_x_categories = [];
48224822
}

c3.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "c3",
33
"repo": "masayuki0812/c3",
44
"description": "A D3-based reusable chart library",
5-
"version": "0.4.13",
5+
"version": "0.4.14",
66
"keywords": [],
77
"dependencies": {
88
"mbostock/d3": "v3.5.6"

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
{
22
"name": "c3",
3-
"version": "0.4.13",
3+
"version": "0.4.14",
44
"description": "D3-based reusable chart library",
55
"main": "c3.js",
66
"scripts": {
77
"serve": "static -p 8080 htdocs/",
8-
"prepublish": "npm run dist",
98
"lint": "jshint --reporter=node_modules/jshint-stylish src/ spec/",
109
"build": "npm run build:js && npm run build:css",
1110
"build:js": "npm run build:js:rollup && npm run build:js:uglify",

src/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Axis from './axis';
22
import CLASS from './class';
33
import { isValue, isFunction, isString, isUndefined, isDefined, ceil10, asHalfPixel, diffDomain, isEmpty, notEmpty, getOption, hasValue, sanitise, getPathBox } from './util';
44

5-
export var c3 = { version: "0.4.13" };
5+
export var c3 = { version: "0.4.14" };
66

77
export var c3_chart_fn;
88
export var c3_chart_internal_fn;

0 commit comments

Comments
 (0)