diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e7a165..12bb912 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,12 @@ ### Added +## [0.5.1] - 2018-08-09 + ### Fixed +* Fixed broken CLI + ## [0.5.0] - 2018-08-09 ### Fixed diff --git a/bin/cli.js b/bin/cli.js index 14ccc07..2755390 100755 --- a/bin/cli.js +++ b/bin/cli.js @@ -60,7 +60,7 @@ async function main() { throw new Error('At most one argument expected') } - let urlToOpen = 'file://' + path.resolve(__dirname, './dist/release/index.html') + let urlToOpen = 'file://' + path.resolve(__dirname, '../dist/release/index.html') if (process.argv.length === 3) { const relPath = process.argv[2] diff --git a/package.json b/package.json index a66f6ab..17c5b27 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "speedscope", - "version": "0.5.0", + "version": "0.5.1", "description": "", "repository": "jlfwong/speedscope", "main": "index.js",