Skip to content

Commit 959a56f

Browse files
committed
chore(version): bump to v0.7.0
1 parent dbbb656 commit 959a56f

9 files changed

+20
-16
lines changed

.bmp.yml

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

c3.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* @license C3.js v0.6.14 | (c) C3 Team and other contributors | http://c3js.org/ */
1+
/* @license C3.js v0.7.0 | (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) :
@@ -1161,7 +1161,7 @@
11611161
};
11621162

11631163
var c3 = {
1164-
version: "0.6.14",
1164+
version: "0.7.0",
11651165
chart: {
11661166
fn: Chart.prototype,
11671167
internal: {
@@ -6439,7 +6439,7 @@
64396439

64406440
f(url, headers).then(function (data) {
64416441
done.call($$, converter.call($$, data, keys));
6442-
}).catch(function (error) {
6442+
})["catch"](function (error) {
64436443
throw error;
64446444
});
64456445
};
@@ -10984,7 +10984,7 @@
1098410984
};
1098510985

1098610986
ChartInternal.prototype.lineOrScatterOrStanfordData = function (d) {
10987-
return this.isLineType(d) || this.isScatterType(d) || this.isStanfordType() ? d.values : [];
10987+
return this.isLineType(d) || this.isScatterType(d) || this.isStanfordType(d) ? d.values : [];
1098810988
};
1098910989

1099010990
ChartInternal.prototype.barOrLineData = function (d) {

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.14",
5+
"version": "0.7.0",
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.7.0">v0.7.0</a><span class="gray">&nbsp;-&nbsp;2019-04-10</span>
43+
%ul
44+
%li Add stanford diagram.
4145
%li
4246
<a href="https://github.com/c3js/c3/releases/tag/v0.6.14">v0.6.14</a><span class="gray">&nbsp;-&nbsp;2019-03-27</span>
4347
%ul

docs/js/c3.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* @license C3.js v0.6.14 | (c) C3 Team and other contributors | http://c3js.org/ */
1+
/* @license C3.js v0.7.0 | (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) :
@@ -1161,7 +1161,7 @@
11611161
};
11621162

11631163
var c3 = {
1164-
version: "0.6.14",
1164+
version: "0.7.0",
11651165
chart: {
11661166
fn: Chart.prototype,
11671167
internal: {
@@ -6439,7 +6439,7 @@
64396439

64406440
f(url, headers).then(function (data) {
64416441
done.call($$, converter.call($$, data, keys));
6442-
}).catch(function (error) {
6442+
})["catch"](function (error) {
64436443
throw error;
64446444
});
64456445
};
@@ -10984,7 +10984,7 @@
1098410984
};
1098510985

1098610986
ChartInternal.prototype.lineOrScatterOrStanfordData = function (d) {
10987-
return this.isLineType(d) || this.isScatterType(d) || this.isStanfordType() ? d.values : [];
10987+
return this.isLineType(d) || this.isScatterType(d) || this.isStanfordType(d) ? d.values : [];
1098810988
};
1098910989

1099010990
ChartInternal.prototype.barOrLineData = function (d) {

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.14",
3+
"version": "0.7.0",
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.14",
23+
version: "0.7.0",
2424
chart: {
2525
fn: Chart.prototype,
2626
internal: {

0 commit comments

Comments
 (0)