Browse Source

chore(version): bump to v0.6.2

pull/2387/head v0.6.2
Yoshiya Hinosawa 7 years ago
parent
commit
0396e9d016
  1. 2
      .bmp.yml
  2. 8
      c3.js
  3. 4
      c3.min.js
  4. 2
      component.json
  5. 4
      docs/index.html.haml
  6. 4
      docs/js/c3.min.js
  7. 2
      package.json
  8. 2
      src/core.js

2
.bmp.yml

@ -1,5 +1,5 @@
--- ---
version: 0.6.1 version: 0.6.2
commit: 'chore(version): bump to v%.%.%' commit: 'chore(version): bump to v%.%.%'
files: files:
src/core.js: 'version: "%.%.%"' src/core.js: 'version: "%.%.%"'

8
c3.js

@ -1,4 +1,4 @@
/* @license C3.js v0.6.1 | (c) C3 Team and other contributors | http://c3js.org/ */ /* @license C3.js v0.6.2 | (c) C3 Team and other contributors | http://c3js.org/ */
(function (global, factory) { (function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) : typeof define === 'function' && define.amd ? define(factory) :
@ -1023,7 +1023,7 @@
$$.axes.subx.style("opacity", isHidden ? 0 : 1).call($$.subXAxis, transition); $$.axes.subx.style("opacity", isHidden ? 0 : 1).call($$.subXAxis, transition);
}; };
var c3 = { version: "0.6.1" }; var c3 = { version: "0.6.2" };
var c3_chart_fn; var c3_chart_fn;
var c3_chart_internal_fn; var c3_chart_internal_fn;
@ -7865,7 +7865,9 @@
'cardinal-open': d3.curveCardinalOpen, 'cardinal-open': d3.curveCardinalOpen,
'cardinal-closed': d3.curveCardinalClosed, 'cardinal-closed': d3.curveCardinalClosed,
'monotone': d3.curveMonotoneX, 'monotone': d3.curveMonotoneX,
'step': d3.curveStep 'step': d3.curveStep,
'step-before': d3.curveStepBefore,
'step-after': d3.curveStepAfter
}, },
type; type;

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", "name": "c3",
"repo": "masayuki0812/c3", "repo": "masayuki0812/c3",
"description": "A D3-based reusable chart library", "description": "A D3-based reusable chart library",
"version": "0.6.1", "version": "0.6.2",
"keywords": [], "keywords": [],
"dependencies": { "dependencies": {
"mbostock/d3": "v5.0.0" "mbostock/d3": "v5.0.0"

4
docs/index.html.haml

@ -38,6 +38,10 @@
%h3 Change Log %h3 Change Log
%ul %ul
%li
<a href="https://github.com/c3js/c3/releases/tag/v0.6.2">v0.6.2</a><span class="gray">&nbsp;-&nbsp;2018-06-08</span>
%ul
%li Add step-before and step-after for line.step.type option.
%li %li
<a href="https://github.com/c3js/c3/releases/tag/v0.4.23">v0.4.23</a><span class="gray">&nbsp;-&nbsp;2018-05-18</span> <a href="https://github.com/c3js/c3/releases/tag/v0.4.23">v0.4.23</a><span class="gray">&nbsp;-&nbsp;2018-05-18</span>
%ul %ul

4
docs/js/c3.min.js vendored

File diff suppressed because one or more lines are too long

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "c3", "name": "c3",
"version": "0.6.1", "version": "0.6.2",
"description": "D3-based reusable chart library", "description": "D3-based reusable chart library",
"main": "c3.js", "main": "c3.js",
"scripts": { "scripts": {

2
src/core.js

@ -2,7 +2,7 @@ import Axis from './axis';
import CLASS from './class'; import CLASS from './class';
import { isValue, isFunction, isString, isUndefined, isDefined, ceil10, asHalfPixel, diffDomain, isEmpty, notEmpty, getOption, hasValue, sanitise, getPathBox } from './util'; import { isValue, isFunction, isString, isUndefined, isDefined, ceil10, asHalfPixel, diffDomain, isEmpty, notEmpty, getOption, hasValue, sanitise, getPathBox } from './util';
export var c3 = { version: "0.6.1" }; export var c3 = { version: "0.6.2" };
export var c3_chart_fn; export var c3_chart_fn;
export var c3_chart_internal_fn; export var c3_chart_internal_fn;

Loading…
Cancel
Save