From 7875f24d6e2d1376f8ece6eb20fd743b0df4d551 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Greg=20Berg=C3=A9?= Date: Tue, 17 Sep 2019 14:38:01 +0200 Subject: [PATCH] v0.4.0 --- CHANGELOG.md | 12 ++++++++++++ lerna.json | 2 +- packages/cli/CHANGELOG.md | 8 ++++++++ packages/cli/package.json | 4 ++-- packages/core/CHANGELOG.md | 8 ++++++++ packages/core/package.json | 2 +- packages/gatsby-plugin/CHANGELOG.md | 11 +++++++++++ packages/gatsby-plugin/package.json | 4 ++-- packages/webpack-plugin/CHANGELOG.md | 8 ++++++++ packages/webpack-plugin/package.json | 4 ++-- 10 files changed, 55 insertions(+), 8 deletions(-) create mode 100644 packages/gatsby-plugin/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index fc25daf..6f8dd73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/smooth-code/bundle-analyzer-javascript/compare/v0.3.1...v0.4.0) (2019-09-17) + + +### Features + +* add Gatsby plugin ([647d53e](https://github.com/smooth-code/bundle-analyzer-javascript/commit/647d53e)) +* support Node.js v8 ([3b58d48](https://github.com/smooth-code/bundle-analyzer-javascript/commit/3b58d48)) + + + + + ## [0.3.1](https://github.com/smooth-code/bundle-analyzer-javascript/compare/v0.3.0...v0.3.1) (2019-09-16) diff --git a/lerna.json b/lerna.json index 9e77049..0912e71 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages": [ "packages/*" ], - "version": "0.3.1", + "version": "0.4.0", "npmClient": "yarn", "useWorkspaces": true } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 9cffcf8..5e5f702 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/cli/compare/v0.3.1...v0.4.0) (2019-09-17) + +**Note:** Version bump only for package @bundle-analyzer/cli + + + + + ## [0.3.1](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/cli/compare/v0.3.0...v0.3.1) (2019-09-16) diff --git a/packages/cli/package.json b/packages/cli/package.json index b976bd6..da305dc 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.3.1", + "version": "0.4.0", "main": "lib/index.js", "repository": "https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/cli", "author": "Greg Bergé ", @@ -25,7 +25,7 @@ "prepublishOnly": "yarn run build" }, "dependencies": { - "@bundle-analyzer/core": "^0.3.1", + "@bundle-analyzer/core": "^0.4.0", "commander": "^3.0.1" }, "devDependencies": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 77950b8..d859bc0 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/core/compare/v0.3.1...v0.4.0) (2019-09-17) + +**Note:** Version bump only for package @bundle-analyzer/core + + + + + ## [0.3.1](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/core/compare/v0.3.0...v0.3.1) (2019-09-16) diff --git a/packages/core/package.json b/packages/core/package.json index 300c273..07bc3f8 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.3.1", + "version": "0.4.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/gatsby-plugin/CHANGELOG.md b/packages/gatsby-plugin/CHANGELOG.md new file mode 100644 index 0000000..a387e54 --- /dev/null +++ b/packages/gatsby-plugin/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.4.0](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/gatsby-plugin/compare/v0.3.1...v0.4.0) (2019-09-17) + + +### Features + +* add Gatsby plugin ([647d53e](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/gatsby-plugin/commit/647d53e)) diff --git a/packages/gatsby-plugin/package.json b/packages/gatsby-plugin/package.json index 1f43c29..69d272e 100644 --- a/packages/gatsby-plugin/package.json +++ b/packages/gatsby-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@bundle-analyzer/gatsby-plugin", "description": "Bundle Analyzer Gatsby plugin.", - "version": "0.3.1", + "version": "0.4.0", "main": "index.js", "repository": "https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/gatsby-plugin", "author": "Greg Bergé ", @@ -24,6 +24,6 @@ "prepublishOnly": "yarn run build" }, "dependencies": { - "@bundle-analyzer/webpack-plugin": "^0.3.1" + "@bundle-analyzer/webpack-plugin": "^0.4.0" } } diff --git a/packages/webpack-plugin/CHANGELOG.md b/packages/webpack-plugin/CHANGELOG.md index 8815e01..2ac2366 100644 --- a/packages/webpack-plugin/CHANGELOG.md +++ b/packages/webpack-plugin/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/webpack-plugin/compare/v0.3.1...v0.4.0) (2019-09-17) + +**Note:** Version bump only for package @bundle-analyzer/webpack-plugin + + + + + ## [0.3.1](https://github.com/smooth-code/bundle-analyzer-javascript/tree/master/packages/webpack-plugin/compare/v0.3.0...v0.3.1) (2019-09-16) **Note:** Version bump only for package @bundle-analyzer/webpack-plugin diff --git a/packages/webpack-plugin/package.json b/packages/webpack-plugin/package.json index 57ce093..fae0936 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.3.1", + "version": "0.4.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.3.1" + "@bundle-analyzer/core": "^0.4.0" } }