Browse Source

chore(version): bump to v0.6.4

pull/2399/merge v0.6.4
Yoshiya Hinosawa 6 years ago
parent
commit
3b11a287f5
  1. 2
      .bmp.yml
  2. 10
      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/util.js

2
.bmp.yml

@ -1,5 +1,5 @@
---
version: 0.6.3
version: 0.6.4
commit: 'chore(version): bump to v%.%.%'
files:
src/util.js: 'version: "%.%.%"'

10
c3.js

@ -1,4 +1,4 @@
/* @license C3.js v0.6.3 | (c) C3 Team and other contributors | http://c3js.org/ */
/* @license C3.js v0.6.4 | (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) :
@ -145,7 +145,7 @@
return call && (typeof call === "object" || typeof call === "function") ? call : self;
};
var c3 = { version: "0.6.3",
var c3 = { version: "0.6.4",
chart: {
fn: Chart.prototype,
internal: {
@ -1322,6 +1322,9 @@
$$.initGridLines();
}
// Cover whole with rects for events
$$.initEventRect();
// Define g for chart
$$.initChartElements();
@ -1331,9 +1334,6 @@
// Set targets
$$.updateTargets($$.data.targets);
// Cover whole with rects for events
$$.initEventRect();
// Set default extent if defined
if (config.axis_x_selection) {
$$.brush.selectionAsValue($$.getDefaultSelection());

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.6.3",
"version": "0.6.4",
"keywords": [],
"dependencies": {
"mbostock/d3": "v5.0.0"

4
docs/index.html.haml

@ -38,6 +38,10 @@
%h3 Change Log
%ul
%li
<a href="https://github.com/c3js/c3/releases/tag/v0.6.4">v0.6.4</a><span class="gray">&nbsp;-&nbsp;2018-07-12</span>
%ul
%li Fix a bug of mouse events.
%li
<a href="https://github.com/c3js/c3/releases/tag/v0.6.3">v0.6.3</a><span class="gray">&nbsp;-&nbsp;2018-07-06</span>
%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",
"version": "0.6.3",
"version": "0.6.4",
"description": "D3-based reusable chart library",
"main": "c3.js",
"scripts": {

2
src/util.js

@ -1,6 +1,6 @@
import {ChartInternal} from './chart-internal';
export var c3 = { version: "0.6.3" ,
export var c3 = { version: "0.6.4" ,
chart: {
fn: Chart.prototype,
internal: {

Loading…
Cancel
Save