Browse Source

chore(version): bump to v0.6.0

pull/2366/head v0.6.0
Yoshiya Hinosawa 6 years ago
parent
commit
b69f938acb
  1. 2
      .bmp.yml
  2. 4
      c3.js
  3. 4
      c3.min.js
  4. 2
      component.json
  5. 3
      docs/_script.haml
  6. 4
      docs/index.html.haml
  7. 8
      docs/js/bootstrap.min.js
  8. 4
      docs/js/c3.min.js
  9. 5
      docs/js/d3-3.5.0.min.js
  10. 5
      docs/js/d3-3.5.6.min.js
  11. 2
      docs/js/d3-4.13.0.min.js
  12. 2
      docs/js/d3-5.4.0.min.js
  13. 2
      package.json
  14. 2
      src/core.js

2
.bmp.yml

@ -1,5 +1,5 @@
---
version: 0.5.4
version: 0.6.0
commit: 'chore(version): bump to v%.%.%'
files:
src/core.js: 'version: "%.%.%"'

4
c3.js

@ -1,4 +1,4 @@
/* @license C3.js v0.5.4 | (c) C3 Team and other contributors | http://c3js.org/ */
/* @license C3.js v0.6.0 | (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) :
@ -996,7 +996,7 @@
$$.axes.subx.style("opacity", isHidden ? 0 : 1).call($$.subXAxis, transition);
};
var c3 = { version: "0.5.4" };
var c3 = { version: "0.6.0" };
var c3_chart_fn;
var c3_chart_internal_fn;

4
c3.min.js vendored

File diff suppressed because one or more lines are too long

2
component.json

@ -2,7 +2,7 @@
"name": "c3",
"repo": "masayuki0812/c3",
"description": "A D3-based reusable chart library",
"version": "0.5.4",
"version": "0.6.0",
"keywords": [],
"dependencies": {
"mbostock/d3": "v5.0.0"

3
docs/_script.haml

@ -1,8 +1,7 @@
= javascript_include_tag 'jquery-1.11.0.min.js'
-#= javascript_include_tag 'bootstrap.min.js'
= javascript_include_tag 'foundation.min.js'
= javascript_include_tag 'highlight.pack.js'
= javascript_include_tag 'd3-4.13.0.min.js'
= javascript_include_tag 'd3-5.4.0.min.js'
= javascript_include_tag 'c3.min.js'
:javascript
hljs.initHighlightingOnLoad();

4
docs/index.html.haml

@ -38,6 +38,10 @@
%h3 Change Log
%ul
%li
<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>
%ul
%li Update D3 dependency to v5.
%li
<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>
%ul

8
docs/js/bootstrap.min.js vendored

File diff suppressed because one or more lines are too long

4
docs/js/c3.min.js vendored

File diff suppressed because one or more lines are too long

5
docs/js/d3-3.5.0.min.js vendored

File diff suppressed because one or more lines are too long

5
docs/js/d3-3.5.6.min.js vendored

File diff suppressed because one or more lines are too long

2
docs/js/d3-4.13.0.min.js vendored

File diff suppressed because one or more lines are too long

2
docs/js/d3-5.4.0.min.js vendored

File diff suppressed because one or more lines are too long

2
package.json

@ -1,6 +1,6 @@
{
"name": "c3",
"version": "0.5.4",
"version": "0.6.0",
"description": "D3-based reusable chart library",
"main": "c3.js",
"scripts": {

2
src/core.js

@ -2,7 +2,7 @@ import Axis from './axis';
import CLASS from './class';
import { isValue, isFunction, isString, isUndefined, isDefined, ceil10, asHalfPixel, diffDomain, isEmpty, notEmpty, getOption, hasValue, sanitise, getPathBox } from './util';
export var c3 = { version: "0.5.4" };
export var c3 = { version: "0.6.0" };
export var c3_chart_fn;
export var c3_chart_internal_fn;

Loading…
Cancel
Save