Skip to content

Commit

Permalink
chore(version): bump to v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed May 14, 2018
1 parent 765cc5f commit b69f938
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .bmp.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 0.5.4
version: 0.6.0
commit: 'chore(version): bump to v%.%.%'
files:
src/core.js: 'version: "%.%.%"'
Expand Down
4 changes: 2 additions & 2 deletions c3.js
Original file line number Diff line number Diff line change
@@ -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) :
Expand Down Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions c3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 1 addition & 2 deletions docs/_script.haml
Original file line number Diff line number Diff line change
@@ -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();
Expand Down
4 changes: 4 additions & 0 deletions docs/index.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 0 additions & 8 deletions docs/js/bootstrap.min.js

This file was deleted.

4 changes: 2 additions & 2 deletions docs/js/c3.min.js

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions docs/js/d3-3.5.0.min.js

This file was deleted.

5 changes: 0 additions & 5 deletions docs/js/d3-3.5.6.min.js

This file was deleted.

2 changes: 0 additions & 2 deletions docs/js/d3-4.13.0.min.js

This file was deleted.

2 changes: 2 additions & 0 deletions docs/js/d3-5.4.0.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "c3",
"version": "0.5.4",
"version": "0.6.0",
"description": "D3-based reusable chart library",
"main": "c3.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b69f938

Please sign in to comment.