Skip to content

Commit

Permalink
chore(version): bump to v0.4.14
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Jun 23, 2017
1 parent c343243 commit e4ff9d9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bmp.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 0.4.13
version: 0.4.14
commit: 'chore(version): bump to v%.%.%'
files:
src/core.js: 'version: "%.%.%"'
Expand Down
4 changes: 2 additions & 2 deletions c3.js
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ Axis.prototype.redraw = function redraw(transitions, isHidden) {
transitions.axisSubX.call($$.subXAxis);
};

var c3$1 = { version: "0.4.13" };
var c3$1 = { version: "0.4.14" };

var c3_chart_fn;
var c3_chart_internal_fn;
Expand Down Expand Up @@ -4816,7 +4816,7 @@ c3_chart_internal_fn.convertDataToTargets = function (data, appendXs) {
var xKey = $$.getXKey(id), rawX = d[xKey],
value = d[id] !== null && !isNaN(d[id]) ? +d[id] : null, x;
// use x as categories if custom x and categorized
if ($$.isCustomX() && $$.isCategorized() && index === 0 && !isUndefined(rawX)) {
if ($$.isCustomX() && $$.isCategorized() && !isUndefined(rawX)) {
if (index === 0 && i === 0) {
config.axis_x_categories = [];
}
Expand Down
2 changes: 1 addition & 1 deletion c3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "c3",
"repo": "masayuki0812/c3",
"description": "A D3-based reusable chart library",
"version": "0.4.13",
"version": "0.4.14",
"keywords": [],
"dependencies": {
"mbostock/d3": "v3.5.6"
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
"name": "c3",
"version": "0.4.13",
"version": "0.4.14",
"description": "D3-based reusable chart library",
"main": "c3.js",
"scripts": {
"serve": "static -p 8080 htdocs/",
"prepublish": "npm run dist",
"lint": "jshint --reporter=node_modules/jshint-stylish src/ spec/",
"build": "npm run build:js && npm run build:css",
"build:js": "npm run build:js:rollup && npm run build:js:uglify",
Expand Down
2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
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.13" };
export var c3 = { version: "0.4.14" };

export var c3_chart_fn;
export var c3_chart_internal_fn;
Expand Down

0 comments on commit e4ff9d9

Please sign in to comment.