Skip to content

Commit 3b11a28

Browse files
committed
chore(version): bump to v0.6.4
1 parent 5ba965a commit 3b11a28

File tree

8 files changed

+17
-13
lines changed

8 files changed

+17
-13
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.6.3
2+
version: 0.6.4
33
commit: 'chore(version): bump to v%.%.%'
44
files:
55
src/util.js: 'version: "%.%.%"'

c3.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* @license C3.js v0.6.3 | (c) C3 Team and other contributors | http://c3js.org/ */
1+
/* @license C3.js v0.6.4 | (c) C3 Team and other contributors | http://c3js.org/ */
22
(function (global, factory) {
33
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
44
typeof define === 'function' && define.amd ? define(factory) :
@@ -145,7 +145,7 @@
145145
return call && (typeof call === "object" || typeof call === "function") ? call : self;
146146
};
147147

148-
var c3 = { version: "0.6.3",
148+
var c3 = { version: "0.6.4",
149149
chart: {
150150
fn: Chart.prototype,
151151
internal: {
@@ -1322,6 +1322,9 @@
13221322
$$.initGridLines();
13231323
}
13241324

1325+
// Cover whole with rects for events
1326+
$$.initEventRect();
1327+
13251328
// Define g for chart
13261329
$$.initChartElements();
13271330

@@ -1331,9 +1334,6 @@
13311334
// Set targets
13321335
$$.updateTargets($$.data.targets);
13331336

1334-
// Cover whole with rects for events
1335-
$$.initEventRect();
1336-
13371337
// Set default extent if defined
13381338
if (config.axis_x_selection) {
13391339
$$.brush.selectionAsValue($$.getDefaultSelection());

c3.min.js

Lines changed: 2 additions & 2 deletions
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.6.3",
5+
"version": "0.6.4",
66
"keywords": [],
77
"dependencies": {
88
"mbostock/d3": "v5.0.0"

docs/index.html.haml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@
3838

3939
%h3 Change Log
4040
%ul
41+
%li
42+
<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>
43+
%ul
44+
%li Fix a bug of mouse events.
4145
%li
4246
<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>
4347
%ul

docs/js/c3.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "c3",
3-
"version": "0.6.3",
3+
"version": "0.6.4",
44
"description": "D3-based reusable chart library",
55
"main": "c3.js",
66
"scripts": {

src/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {ChartInternal} from './chart-internal';
22

3-
export var c3 = { version: "0.6.3" ,
3+
export var c3 = { version: "0.6.4" ,
44
chart: {
55
fn: Chart.prototype,
66
internal: {

0 commit comments

Comments
 (0)