diff --git a/CHANGELOG.md b/CHANGELOG.md index 75d236f..cba4627 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.3.0](https://github.com/smooth-code/bundle-analyzer-javascript/compare/v0.2.1...v0.3.0) (2019-09-16) + + +### Features + +* add CLI to upload stats ([6c4cf84](https://github.com/smooth-code/bundle-analyzer-javascript/commit/6c4cf84)) +* new API ([0295c00](https://github.com/smooth-code/bundle-analyzer-javascript/commit/0295c00)) +* support config file ([7d66601](https://github.com/smooth-code/bundle-analyzer-javascript/commit/7d66601)) + + + + + ## [0.2.1](https://github.com/smooth-code/bundle-analyzer-javascript/compare/v0.2.0...v0.2.1) (2019-09-11) diff --git a/lerna.json b/lerna.json index 58d5a2d..ffb7527 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages": [ "packages/*" ], - "version": "0.2.1", + "version": "0.3.0", "npmClient": "yarn", "useWorkspaces": true } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md new file mode 100644 index 0000000..c510800 --- /dev/null +++ b/packages/cli/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.3.0](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/cli/compare/v0.2.1...v0.3.0) (2019-09-16) + + +### Features + +* add CLI to upload stats ([6c4cf84](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/cli/commit/6c4cf84)) +* support config file ([7d66601](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/cli/commit/7d66601)) diff --git a/packages/cli/package.json b/packages/cli/package.json index 0fe406b..6e0d167 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@bundle-analyzer/cli", "description": "Bundle Analyzer CLI.", - "version": "0.2.1", + "version": "0.3.0", "main": "lib/index.js", "repository": "https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/cli", "author": "Greg Bergé ", @@ -22,7 +22,7 @@ "prepublishOnly": "yarn run build" }, "dependencies": { - "@bundle-analyzer/core": "^0.2.1", + "@bundle-analyzer/core": "^0.3.0", "commander": "^3.0.1" }, "devDependencies": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md new file mode 100644 index 0000000..a46a584 --- /dev/null +++ b/packages/core/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.3.0](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/core/compare/v0.2.1...v0.3.0) (2019-09-16) + + +### Features + +* add CLI to upload stats ([6c4cf84](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/core/commit/6c4cf84)) +* support config file ([7d66601](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/core/commit/7d66601)) diff --git a/packages/core/package.json b/packages/core/package.json index e0dbdf3..c717bac 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@bundle-analyzer/core", "description": "Bundle Analyzer Node.js uploader.", - "version": "0.2.1", + "version": "0.3.0", "main": "lib/index.js", "repository": "https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/core", "author": "Greg Bergé ", diff --git a/packages/webpack-plugin/CHANGELOG.md b/packages/webpack-plugin/CHANGELOG.md index d897051..82cbdee 100644 --- a/packages/webpack-plugin/CHANGELOG.md +++ b/packages/webpack-plugin/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.3.0](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/webpack-plugin/compare/v0.2.1...v0.3.0) (2019-09-16) + + +### Features + +* add CLI to upload stats ([6c4cf84](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/webpack-plugin/commit/6c4cf84)) +* new API ([0295c00](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/webpack-plugin/commit/0295c00)) +* support config file ([7d66601](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/webpack-plugin/commit/7d66601)) + + + + + ## [0.2.1](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/webpack-plugin/compare/v0.2.0...v0.2.1) (2019-09-11) diff --git a/packages/webpack-plugin/package.json b/packages/webpack-plugin/package.json index 633e535..94c5ce1 100644 --- a/packages/webpack-plugin/package.json +++ b/packages/webpack-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@bundle-analyzer/webpack-plugin", "description": "Bundle Analyzer webpack plugin.", - "version": "0.2.1", + "version": "0.3.0", "main": "lib/index.js", "repository": "https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/webpack-plugin", "author": "Greg Bergé ", @@ -24,6 +24,6 @@ "prepublishOnly": "yarn run build" }, "dependencies": { - "@bundle-analyzer/core": "^0.2.1" + "@bundle-analyzer/core": "^0.3.0" } }