Skip to content

Commit eeaf323

Browse files
committed
chore(version): bump to v0.6.12
1 parent 334e913 commit eeaf323

9 files changed

+18
-14
lines changed

.bmp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
version: 0.6.11
2+
version: 0.6.12
33
commit: 'chore(version): bump to v%.%.%'
44
files:
55
src/core.js: 'version: "%.%.%"'

c3.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* @license C3.js v0.6.11 | (c) C3 Team and other contributors | http://c3js.org/ */
1+
/* @license C3.js v0.6.12 | (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) :
@@ -1147,7 +1147,7 @@
11471147
};
11481148

11491149
var c3 = {
1150-
version: "0.6.11",
1150+
version: "0.6.12",
11511151
chart: {
11521152
fn: Chart.prototype,
11531153
internal: {
@@ -10299,7 +10299,7 @@
1029910299
}
1030010300

1030110301
if (!text) {
10302-
title = sanitise(titleFormat ? titleFormat(d[i].x) : d[i].x);
10302+
title = sanitise(titleFormat ? titleFormat(d[i].x, d[i].index) : d[i].x);
1030310303
text = "<table class='" + $$.CLASS.tooltip + "'>" + (title || title === 0 ? "<tr><th colspan='2'>" + title + "</th></tr>" : "");
1030410304
}
1030510305

c3.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

component.json

+1-1
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.11",
5+
"version": "0.6.12",
66
"keywords": [],
77
"dependencies": {
88
"mbostock/d3": "v5.0.0"

docs/index.html.haml

+4
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.12">v0.6.12</a><span class="gray">&nbsp;-&nbsp;2018-12-28</span>
43+
%ul
44+
%li Added index to tooltip’s title format callback.
4145
%li
4246
<a href="https://github.com/c3js/c3/releases/tag/v0.6.11">v0.6.11</a><span class="gray">&nbsp;-&nbsp;2018-12-08</span>
4347
%ul

docs/js/c3.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* @license C3.js v0.6.11 | (c) C3 Team and other contributors | http://c3js.org/ */
1+
/* @license C3.js v0.6.12 | (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) :
@@ -1147,7 +1147,7 @@
11471147
};
11481148

11491149
var c3 = {
1150-
version: "0.6.11",
1150+
version: "0.6.12",
11511151
chart: {
11521152
fn: Chart.prototype,
11531153
internal: {
@@ -10299,7 +10299,7 @@
1029910299
}
1030010300

1030110301
if (!text) {
10302-
title = sanitise(titleFormat ? titleFormat(d[i].x) : d[i].x);
10302+
title = sanitise(titleFormat ? titleFormat(d[i].x, d[i].index) : d[i].x);
1030310303
text = "<table class='" + $$.CLASS.tooltip + "'>" + (title || title === 0 ? "<tr><th colspan='2'>" + title + "</th></tr>" : "");
1030410304
}
1030510305

docs/js/c3.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "c3",
3-
"version": "0.6.11",
3+
"version": "0.6.12",
44
"description": "D3-based reusable chart library",
55
"main": "c3.js",
66
"files": [

src/core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
} from './util';
2121

2222
var c3 = {
23-
version: "0.6.11",
23+
version: "0.6.12",
2424
chart: {
2525
fn: Chart.prototype,
2626
internal: {

0 commit comments

Comments
 (0)