Skip to content

Commit b69f938

Browse files
committed
chore(version): bump to v0.6.0
1 parent 765cc5f commit b69f938

14 files changed

+17
-32
lines changed

.bmp.yml

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

c3.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* @license C3.js v0.5.4 | (c) C3 Team and other contributors | http://c3js.org/ */
1+
/* @license C3.js v0.6.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) :
@@ -996,7 +996,7 @@
996996
$$.axes.subx.style("opacity", isHidden ? 0 : 1).call($$.subXAxis, transition);
997997
};
998998

999-
var c3 = { version: "0.5.4" };
999+
var c3 = { version: "0.6.0" };
10001000

10011001
var c3_chart_fn;
10021002
var c3_chart_internal_fn;

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

docs/_script.haml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
= javascript_include_tag 'jquery-1.11.0.min.js'
2-
-#= javascript_include_tag 'bootstrap.min.js'
32
= javascript_include_tag 'foundation.min.js'
43
= javascript_include_tag 'highlight.pack.js'
5-
= javascript_include_tag 'd3-4.13.0.min.js'
4+
= javascript_include_tag 'd3-5.4.0.min.js'
65
= javascript_include_tag 'c3.min.js'
76
:javascript
87
hljs.initHighlightingOnLoad();

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.0">v0.6.0</a><span class="gray">&nbsp;-&nbsp;2018-05-14</span>
43+
%ul
44+
%li Update D3 dependency to v5.
4145
%li
4246
<a href="https://github.com/c3js/c3/releases/tag/v0.5.4">v0.5.4</a><span class="gray">&nbsp;-&nbsp;2018-04-23</span>
4347
%ul

docs/js/bootstrap.min.js

-8
This file was deleted.

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.

docs/js/d3-3.5.0.min.js

-5
This file was deleted.

docs/js/d3-3.5.6.min.js

-5
This file was deleted.

docs/js/d3-4.13.0.min.js

-2
This file was deleted.

docs/js/d3-5.4.0.min.js

+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.5.4",
3+
"version": "0.6.0",
44
"description": "D3-based reusable chart library",
55
"main": "c3.js",
66
"scripts": {

src/core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Axis from './axis';
22
import CLASS from './class';
33
import { isValue, isFunction, isString, isUndefined, isDefined, ceil10, asHalfPixel, diffDomain, isEmpty, notEmpty, getOption, hasValue, sanitise, getPathBox } from './util';
44

5-
export var c3 = { version: "0.5.4" };
5+
export var c3 = { version: "0.6.0" };
66

77
export var c3_chart_fn;
88
export var c3_chart_internal_fn;

0 commit comments

Comments
 (0)