Skip to content

Commit

Permalink
chore(version): bump to v0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Jul 11, 2018
1 parent 5ba965a commit 3b11a28
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .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: "%.%.%"'
Expand Down
10 changes: 5 additions & 5 deletions 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) :
Expand Down Expand Up @@ -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: {
Expand Down Expand Up @@ -1322,6 +1322,9 @@
$$.initGridLines();
}

// Cover whole with rects for events
$$.initEventRect();

// Define g for chart
$$.initChartElements();

Expand All @@ -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());
Expand Down
4 changes: 2 additions & 2 deletions c3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion component.json
Expand Up @@ -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"
Expand Down
4 changes: 4 additions & 0 deletions docs/index.html.haml
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/js/c3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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": {
Expand Down
2 changes: 1 addition & 1 deletion 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: {
Expand Down

0 comments on commit 3b11a28

Please sign in to comment.