Skip to content

Commit

Permalink
Update version and changelog (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris Salvador authored Jun 8, 2018
1 parent 38225fe commit 8876247
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.8 (2018-06-08)

* [#80](https://github.com/spotify/reactochart/pull/80) Upgrade mocha to v4.0.1 to fix [growl dependency](https://github.com/tj/node-growl/pull/68)

## 0.4.7 (2018-05-31)

* [#73](https://github.com/spotify/reactochart/pull/73) Add step labeling to sankey
Expand Down
29 changes: 13 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,10 @@
"name": "reactochart",
"description": "Reactochart - React Charts, graphs and data visualization",
"author": "Dan Delany <dand@spotify.com>",
"contributors": [
"Kris Salvador <kriss@spotify.com>"
],
"version": "0.4.7",
"contributors": ["Kris Salvador <kriss@spotify.com>"],
"version": "0.4.8",
"main": "index.js",
"files": [
"*.js",
"*.js.map",
"styles.css",
"utils/",
"src/"
],
"files": ["*.js", "*.js.map", "styles.css", "utils/", "src/"],
"engines": {
"node": ">=4.0.0"
},
Expand All @@ -26,15 +18,20 @@
"docs": "npm run make-docs && npm run build-docs",
"build-lib": "npm run clean && babel src --out-dir ./ --source-maps",
"build-css": "lessc ./styles/charts.less ./styles.css",
"build-docs": "BABEL_ENV=production webpack --config webpack.config.build.js",
"build-docs":
"BABEL_ENV=production webpack --config webpack.config.build.js",
"make-docs": "node scripts/makeDocs.js",
"clean": "node scripts/clean.js",
"serve": "python -m SimpleHTTPServer",
"test": "npm run test-jsdom-and-lint",
"test-files": "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --require tests/jsdom/setup.js --recursive",
"test-browser": "webpack-dev-server --config tests/browser/webpack.config.test.js",
"test-jsdom-and-lint": "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --require tests/jsdom/setup.js --recursive tests/jsdom/spec tests/eslint.spec.js",
"test-watch": "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --watch --compilers js:babel-register --require tests/jsdom/setup.js --recursive tests/jsdom/spec"
"test-files":
"env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --require tests/jsdom/setup.js --recursive",
"test-browser":
"webpack-dev-server --config tests/browser/webpack.config.test.js",
"test-jsdom-and-lint":
"env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --require tests/jsdom/setup.js --recursive tests/jsdom/spec tests/eslint.spec.js",
"test-watch":
"env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --watch --compilers js:babel-register --require tests/jsdom/setup.js --recursive tests/jsdom/spec"
},
"dependencies": {
"d3": "^4.4.0",
Expand Down

0 comments on commit 8876247

Please sign in to comment.