Skip to content

Commit

Permalink
chore(version): bump to v0.4.15
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Jul 20, 2017
1 parent aea27e0 commit 9372354
Show file tree
Hide file tree
Showing 8 changed files with 3,266 additions and 2,458 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.4.14
version: 0.4.15
commit: 'chore(version): bump to v%.%.%'
files:
src/core.js: 'version: "%.%.%"'
Expand Down
7 changes: 7 additions & 0 deletions c3.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
stroke-width: 0; }

.c3-bar._expanded_ {
fill-opacity: 1;
fill-opacity: 0.75; }

/*-- Focus --*/
Expand Down Expand Up @@ -165,3 +166,9 @@
.c3-chart-arc .c3-gauge-value {
fill: #000;
/* font-size: 28px !important;*/ }

.c3-chart-arc.c3-target g path {
opacity: 1; }

.c3-chart-arc.c3-target.c3-focused g path {
opacity: 1; }
5,705 changes: 3,253 additions & 2,452 deletions c3.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion c3.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 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.4.14",
"version": "0.4.15",
"keywords": [],
"dependencies": {
"mbostock/d3": "v3.5.6"
Expand Down
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.4.14",
"version": "0.4.15",
"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.4.14" };
export var c3 = { version: "0.4.15" };

export var c3_chart_fn;
export var c3_chart_internal_fn;
Expand Down

0 comments on commit 9372354

Please sign in to comment.