Browse Source

chore(version): bump to v0.6.5

pull/2413/head v0.6.5
Yoshiya Hinosawa 6 years ago
parent
commit
23b21774eb
  1. 4
      .bmp.yml
  2. 2274
      c3.js
  3. 4
      c3.min.js
  4. 2
      component.json
  5. 4
      docs/index.html.haml
  6. 4
      docs/js/c3.min.js
  7. 2
      package.json
  8. 2
      src/core.js

4
.bmp.yml

@ -1,7 +1,7 @@
---
version: 0.6.4
version: 0.6.5
commit: 'chore(version): bump to v%.%.%'
files:
src/util.js: 'version: "%.%.%"'
src/core.js: 'version: "%.%.%"'
package.json: '"version": "%.%.%"'
component.json: '"version": "%.%.%"'

2274
c3.js

File diff suppressed because it is too large Load Diff

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.6.4",
"version": "0.6.5",
"keywords": [],
"dependencies": {
"mbostock/d3": "v5.0.0"

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.5">v0.6.5</a><span class="gray">&nbsp;-&nbsp;2018-07-14</span>
%ul
%li Fix bug of hidden legend option.
%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

4
docs/js/c3.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.6.4",
"version": "0.6.5",
"description": "D3-based reusable chart library",
"main": "c3.js",
"scripts": {

2
src/core.js

@ -20,7 +20,7 @@ import {
} from './util';
var c3 = {
version: "0.6.4",
version: "0.6.5",
chart: {
fn: Chart.prototype,
internal: {

Loading…
Cancel
Save