From b22345b9870f62f1125e109fcc47d2e4260b9d09 Mon Sep 17 00:00:00 2001 From: Daniel Stockman Date: Sun, 9 Jun 2019 15:32:00 -0700 Subject: [PATCH] chore(release): v3.14.2 --- CHANGELOG.md | 15 +++++++++++++++ commands/add/CHANGELOG.md | 8 ++++++++ commands/add/package.json | 2 +- commands/bootstrap/CHANGELOG.md | 11 +++++++++++ commands/bootstrap/package.json | 2 +- commands/changed/CHANGELOG.md | 8 ++++++++ commands/changed/package.json | 2 +- commands/clean/CHANGELOG.md | 8 ++++++++ commands/clean/package.json | 2 +- commands/create/CHANGELOG.md | 8 ++++++++ commands/create/package.json | 2 +- commands/diff/CHANGELOG.md | 8 ++++++++ commands/diff/package.json | 2 +- commands/exec/CHANGELOG.md | 8 ++++++++ commands/exec/package.json | 2 +- commands/import/CHANGELOG.md | 8 ++++++++ commands/import/package.json | 2 +- commands/init/CHANGELOG.md | 8 ++++++++ commands/init/package.json | 2 +- commands/link/CHANGELOG.md | 8 ++++++++ commands/link/package.json | 2 +- commands/list/CHANGELOG.md | 8 ++++++++ commands/list/package.json | 2 +- commands/publish/CHANGELOG.md | 11 +++++++++++ commands/publish/package.json | 2 +- commands/run/CHANGELOG.md | 8 ++++++++ commands/run/package.json | 2 +- commands/version/CHANGELOG.md | 11 +++++++++++ commands/version/package.json | 2 +- core/child-process/CHANGELOG.md | 11 +++++++++++ core/child-process/package.json | 2 +- core/command/CHANGELOG.md | 8 ++++++++ core/command/package.json | 2 +- core/filter-options/CHANGELOG.md | 8 ++++++++ core/filter-options/package.json | 2 +- core/lerna/CHANGELOG.md | 8 ++++++++ core/lerna/package.json | 2 +- core/package/CHANGELOG.md | 11 +++++++++++ core/package/package.json | 2 +- core/project/CHANGELOG.md | 8 ++++++++ core/project/package.json | 2 +- lerna.json | 2 +- utils/check-working-tree/CHANGELOG.md | 8 ++++++++ utils/check-working-tree/package.json | 2 +- utils/collect-uncommitted/CHANGELOG.md | 8 ++++++++ utils/collect-uncommitted/package.json | 2 +- utils/collect-updates/CHANGELOG.md | 8 ++++++++ utils/collect-updates/package.json | 2 +- utils/describe-ref/CHANGELOG.md | 8 ++++++++ utils/describe-ref/package.json | 2 +- utils/github-client/CHANGELOG.md | 8 ++++++++ utils/github-client/package.json | 2 +- utils/has-npm-version/CHANGELOG.md | 8 ++++++++ utils/has-npm-version/package.json | 2 +- utils/npm-install/CHANGELOG.md | 8 ++++++++ utils/npm-install/package.json | 2 +- utils/npm-publish/CHANGELOG.md | 11 +++++++++++ utils/npm-publish/package.json | 2 +- utils/npm-run-script/CHANGELOG.md | 8 ++++++++ utils/npm-run-script/package.json | 2 +- utils/pack-directory/CHANGELOG.md | 8 ++++++++ utils/pack-directory/package.json | 2 +- utils/rimraf-dir/CHANGELOG.md | 8 ++++++++ utils/rimraf-dir/package.json | 2 +- utils/symlink-binary/CHANGELOG.md | 8 ++++++++ utils/symlink-binary/package.json | 2 +- utils/symlink-dependencies/CHANGELOG.md | 8 ++++++++ utils/symlink-dependencies/package.json | 2 +- 68 files changed, 331 insertions(+), 34 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2167c385ec..d34267a1d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + + +### Bug Fixes + +* **bootstrap:** Respect `--force-local` option ([#2104](https://github.com/lerna/lerna/issues/2104)) ([c2fb639](https://github.com/lerna/lerna/commit/c2fb639)) +* **child-process:** Ensure adjacent prefixes are always a different color ([5a10146](https://github.com/lerna/lerna/commit/5a10146)) +* **npm-publish:** Use generated manifest when publishing subdirectory ([b922766](https://github.com/lerna/lerna/commit/b922766)), closes [#2113](https://github.com/lerna/lerna/issues/2113) +* **publish:** Allow per-leaf subdirectory publishing ([ea861d9](https://github.com/lerna/lerna/commit/ea861d9)), closes [#2109](https://github.com/lerna/lerna/issues/2109) +* **version:** Remove unused dependency ([285bd7e](https://github.com/lerna/lerna/commit/285bd7e)) + + + + + ## [3.14.1](https://github.com/lerna/lerna/compare/v3.14.0...v3.14.1) (2019-05-15) diff --git a/commands/add/CHANGELOG.md b/commands/add/CHANGELOG.md index 72dafe9daf..c779cf1bda 100644 --- a/commands/add/CHANGELOG.md +++ b/commands/add/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/add + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) diff --git a/commands/add/package.json b/commands/add/package.json index 641b9012bd..8d05d4bd79 100644 --- a/commands/add/package.json +++ b/commands/add/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/add", - "version": "3.14.0", + "version": "3.14.2", "description": "Add a dependency to matched packages", "keywords": [ "lerna", diff --git a/commands/bootstrap/CHANGELOG.md b/commands/bootstrap/CHANGELOG.md index f37f33cbf6..44c12c303d 100644 --- a/commands/bootstrap/CHANGELOG.md +++ b/commands/bootstrap/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + + +### Bug Fixes + +* **bootstrap:** Respect `--force-local` option ([#2104](https://github.com/lerna/lerna/issues/2104)) ([c2fb639](https://github.com/lerna/lerna/commit/c2fb639)) + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) **Note:** Version bump only for package @lerna/bootstrap diff --git a/commands/bootstrap/package.json b/commands/bootstrap/package.json index cb4e01852b..7d649730f8 100644 --- a/commands/bootstrap/package.json +++ b/commands/bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/bootstrap", - "version": "3.14.0", + "version": "3.14.2", "description": "Link local packages together and install remaining package dependencies", "keywords": [ "lerna", diff --git a/commands/changed/CHANGELOG.md b/commands/changed/CHANGELOG.md index c0c7c1947f..2da616febc 100644 --- a/commands/changed/CHANGELOG.md +++ b/commands/changed/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/changed + + + + + ## [3.14.1](https://github.com/lerna/lerna/compare/v3.14.0...v3.14.1) (2019-05-15) **Note:** Version bump only for package @lerna/changed diff --git a/commands/changed/package.json b/commands/changed/package.json index 05a65c1037..f643810a6c 100644 --- a/commands/changed/package.json +++ b/commands/changed/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/changed", - "version": "3.14.1", + "version": "3.14.2", "description": "List local packages that have changed since the last tagged release", "keywords": [ "lerna", diff --git a/commands/clean/CHANGELOG.md b/commands/clean/CHANGELOG.md index d689e9134e..bf9b3ef752 100644 --- a/commands/clean/CHANGELOG.md +++ b/commands/clean/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/clean + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) **Note:** Version bump only for package @lerna/clean diff --git a/commands/clean/package.json b/commands/clean/package.json index b8c479e0d2..507652cc6d 100644 --- a/commands/clean/package.json +++ b/commands/clean/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/clean", - "version": "3.14.0", + "version": "3.14.2", "description": "Remove the node_modules directory from all packages", "keywords": [ "lerna", diff --git a/commands/create/CHANGELOG.md b/commands/create/CHANGELOG.md index b664569ef3..685bbcae96 100644 --- a/commands/create/CHANGELOG.md +++ b/commands/create/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/create + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) **Note:** Version bump only for package @lerna/create diff --git a/commands/create/package.json b/commands/create/package.json index beeced0b0d..86d2359467 100644 --- a/commands/create/package.json +++ b/commands/create/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/create", - "version": "3.14.0", + "version": "3.14.2", "description": "Create a new lerna-managed package", "keywords": [ "lerna", diff --git a/commands/diff/CHANGELOG.md b/commands/diff/CHANGELOG.md index f372b0bd09..da163e3322 100644 --- a/commands/diff/CHANGELOG.md +++ b/commands/diff/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/diff + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) **Note:** Version bump only for package @lerna/diff diff --git a/commands/diff/package.json b/commands/diff/package.json index 300d46681d..8f9aac44ad 100644 --- a/commands/diff/package.json +++ b/commands/diff/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/diff", - "version": "3.14.0", + "version": "3.14.2", "description": "Diff all packages or a single package since the last release", "keywords": [ "lerna", diff --git a/commands/exec/CHANGELOG.md b/commands/exec/CHANGELOG.md index 9fb8a5c2d4..7b27903421 100644 --- a/commands/exec/CHANGELOG.md +++ b/commands/exec/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/exec + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) diff --git a/commands/exec/package.json b/commands/exec/package.json index 9135303097..b86138d74b 100644 --- a/commands/exec/package.json +++ b/commands/exec/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/exec", - "version": "3.14.0", + "version": "3.14.2", "description": "Execute an arbitrary command in each package", "keywords": [ "lerna", diff --git a/commands/import/CHANGELOG.md b/commands/import/CHANGELOG.md index 2fafe02977..dbbdbd7d52 100644 --- a/commands/import/CHANGELOG.md +++ b/commands/import/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/import + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) diff --git a/commands/import/package.json b/commands/import/package.json index 8fd95e78a5..2c98c5b54e 100644 --- a/commands/import/package.json +++ b/commands/import/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/import", - "version": "3.14.0", + "version": "3.14.2", "description": "Import a package into the monorepo with commit history", "keywords": [ "lerna", diff --git a/commands/init/CHANGELOG.md b/commands/init/CHANGELOG.md index 5cf7699b92..6737d66aeb 100644 --- a/commands/init/CHANGELOG.md +++ b/commands/init/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/init + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) **Note:** Version bump only for package @lerna/init diff --git a/commands/init/package.json b/commands/init/package.json index 8475c84e10..3de365191a 100644 --- a/commands/init/package.json +++ b/commands/init/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/init", - "version": "3.14.0", + "version": "3.14.2", "description": "Create a new Lerna repo or upgrade an existing repo to the current version of Lerna", "keywords": [ "lerna", diff --git a/commands/link/CHANGELOG.md b/commands/link/CHANGELOG.md index f0575e9b24..ccbd27b8a0 100644 --- a/commands/link/CHANGELOG.md +++ b/commands/link/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/link + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) **Note:** Version bump only for package @lerna/link diff --git a/commands/link/package.json b/commands/link/package.json index 40b0ea4c7b..505f817f5c 100644 --- a/commands/link/package.json +++ b/commands/link/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/link", - "version": "3.14.0", + "version": "3.14.2", "description": "Symlink together all packages that are dependencies of each other", "keywords": [ "lerna", diff --git a/commands/list/CHANGELOG.md b/commands/list/CHANGELOG.md index 13b9aaa019..8911202049 100644 --- a/commands/list/CHANGELOG.md +++ b/commands/list/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/list + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) **Note:** Version bump only for package @lerna/list diff --git a/commands/list/package.json b/commands/list/package.json index 8d4fa5a56f..49a3e9be9e 100644 --- a/commands/list/package.json +++ b/commands/list/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/list", - "version": "3.14.0", + "version": "3.14.2", "description": "List local packages", "keywords": [ "lerna", diff --git a/commands/publish/CHANGELOG.md b/commands/publish/CHANGELOG.md index cd6c87107b..2e055e268a 100644 --- a/commands/publish/CHANGELOG.md +++ b/commands/publish/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + + +### Bug Fixes + +* **publish:** Allow per-leaf subdirectory publishing ([ea861d9](https://github.com/lerna/lerna/commit/ea861d9)), closes [#2109](https://github.com/lerna/lerna/issues/2109) + + + + + ## [3.14.1](https://github.com/lerna/lerna/compare/v3.14.0...v3.14.1) (2019-05-15) **Note:** Version bump only for package @lerna/publish diff --git a/commands/publish/package.json b/commands/publish/package.json index 8124f6a321..4c452ab6ba 100644 --- a/commands/publish/package.json +++ b/commands/publish/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/publish", - "version": "3.14.1", + "version": "3.14.2", "description": "Publish packages in the current project", "keywords": [ "lerna", diff --git a/commands/run/CHANGELOG.md b/commands/run/CHANGELOG.md index 8f23c31f98..231a24ed39 100644 --- a/commands/run/CHANGELOG.md +++ b/commands/run/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/run + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) diff --git a/commands/run/package.json b/commands/run/package.json index 73092b2558..572f1f2f8f 100644 --- a/commands/run/package.json +++ b/commands/run/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/run", - "version": "3.14.0", + "version": "3.14.2", "description": "Run an npm script in each package that contains that script", "keywords": [ "lerna", diff --git a/commands/version/CHANGELOG.md b/commands/version/CHANGELOG.md index e9a1c13a76..401491ae0c 100644 --- a/commands/version/CHANGELOG.md +++ b/commands/version/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + + +### Bug Fixes + +* **version:** Remove unused dependency ([285bd7e](https://github.com/lerna/lerna/commit/285bd7e)) + + + + + ## [3.14.1](https://github.com/lerna/lerna/compare/v3.14.0...v3.14.1) (2019-05-15) **Note:** Version bump only for package @lerna/version diff --git a/commands/version/package.json b/commands/version/package.json index 863b906915..82256c738d 100644 --- a/commands/version/package.json +++ b/commands/version/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/version", - "version": "3.14.1", + "version": "3.14.2", "description": "Bump version of packages changed since the last release", "keywords": [ "lerna", diff --git a/core/child-process/CHANGELOG.md b/core/child-process/CHANGELOG.md index c719d59ca3..3960edf8c0 100644 --- a/core/child-process/CHANGELOG.md +++ b/core/child-process/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + + +### Bug Fixes + +* **child-process:** Ensure adjacent prefixes are always a different color ([5a10146](https://github.com/lerna/lerna/commit/5a10146)) + + + + + ## [3.13.3](https://github.com/lerna/lerna/compare/v3.13.2...v3.13.3) (2019-04-17) diff --git a/core/child-process/package.json b/core/child-process/package.json index 67085e928f..e24dd38abf 100644 --- a/core/child-process/package.json +++ b/core/child-process/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/child-process", - "version": "3.13.3", + "version": "3.14.2", "description": "Lerna's internal child_process wrapper", "keywords": [ "lerna", diff --git a/core/command/CHANGELOG.md b/core/command/CHANGELOG.md index d19aeef408..edcf96a790 100644 --- a/core/command/CHANGELOG.md +++ b/core/command/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/command + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) **Note:** Version bump only for package @lerna/command diff --git a/core/command/package.json b/core/command/package.json index 4855304e8b..cdb5657f91 100644 --- a/core/command/package.json +++ b/core/command/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/command", - "version": "3.14.0", + "version": "3.14.2", "description": "Lerna's internal base class for commands", "keywords": [ "lerna", diff --git a/core/filter-options/CHANGELOG.md b/core/filter-options/CHANGELOG.md index 2e4623e866..0b4cf97bd1 100644 --- a/core/filter-options/CHANGELOG.md +++ b/core/filter-options/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/filter-options + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) **Note:** Version bump only for package @lerna/filter-options diff --git a/core/filter-options/package.json b/core/filter-options/package.json index 949eb0658b..51267fdc22 100644 --- a/core/filter-options/package.json +++ b/core/filter-options/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/filter-options", - "version": "3.14.0", + "version": "3.14.2", "description": "Options for lerna sub-commands that need filtering", "keywords": [ "lerna", diff --git a/core/lerna/CHANGELOG.md b/core/lerna/CHANGELOG.md index c37add1c51..b8d344b194 100644 --- a/core/lerna/CHANGELOG.md +++ b/core/lerna/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package lerna + + + + + ## [3.14.1](https://github.com/lerna/lerna/compare/v3.14.0...v3.14.1) (2019-05-15) **Note:** Version bump only for package lerna diff --git a/core/lerna/package.json b/core/lerna/package.json index 4936dcd2b1..794e01228e 100644 --- a/core/lerna/package.json +++ b/core/lerna/package.json @@ -1,6 +1,6 @@ { "name": "lerna", - "version": "3.14.1", + "version": "3.14.2", "description": "A tool for managing JavaScript projects with multiple packages.", "keywords": [ "lerna", diff --git a/core/package/CHANGELOG.md b/core/package/CHANGELOG.md index c980cd2ca8..d8025e97fc 100644 --- a/core/package/CHANGELOG.md +++ b/core/package/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + + +### Bug Fixes + +* **publish:** Allow per-leaf subdirectory publishing ([ea861d9](https://github.com/lerna/lerna/commit/ea861d9)), closes [#2109](https://github.com/lerna/lerna/issues/2109) + + + + + # [3.13.0](https://github.com/lerna/lerna/compare/v3.12.1...v3.13.0) (2019-02-15) diff --git a/core/package/package.json b/core/package/package.json index d2656d90d8..5c66c80585 100644 --- a/core/package/package.json +++ b/core/package/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/package", - "version": "3.13.0", + "version": "3.14.2", "description": "Lerna's internal representation of a package", "keywords": [ "lerna", diff --git a/core/project/CHANGELOG.md b/core/project/CHANGELOG.md index 6547bf360d..9ed7a9eaeb 100644 --- a/core/project/CHANGELOG.md +++ b/core/project/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/project + + + + + ## [3.13.1](https://github.com/lerna/lerna/compare/v3.13.0...v3.13.1) (2019-02-26) diff --git a/core/project/package.json b/core/project/package.json index bb58a7eeb7..ea72bd9248 100644 --- a/core/project/package.json +++ b/core/project/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/project", - "version": "3.13.1", + "version": "3.14.2", "description": "Lerna project configuration", "keywords": [ "lerna", diff --git a/lerna.json b/lerna.json index 17e9aaa54f..fa0fb3c154 100644 --- a/lerna.json +++ b/lerna.json @@ -22,5 +22,5 @@ "**/__tests__/**", "**/*.md" ], - "version": "3.14.1" + "version": "3.14.2" } diff --git a/utils/check-working-tree/CHANGELOG.md b/utils/check-working-tree/CHANGELOG.md index 3e68cebe89..13824da4a3 100644 --- a/utils/check-working-tree/CHANGELOG.md +++ b/utils/check-working-tree/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/check-working-tree + + + + + ## [3.14.1](https://github.com/lerna/lerna/compare/v3.14.0...v3.14.1) (2019-05-15) **Note:** Version bump only for package @lerna/check-working-tree diff --git a/utils/check-working-tree/package.json b/utils/check-working-tree/package.json index ae7a8284df..398aaaa353 100644 --- a/utils/check-working-tree/package.json +++ b/utils/check-working-tree/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/check-working-tree", - "version": "3.14.1", + "version": "3.14.2", "description": "Check git working tree status and error appropriately", "keywords": [ "lerna", diff --git a/utils/collect-uncommitted/CHANGELOG.md b/utils/collect-uncommitted/CHANGELOG.md index 52f01f1c32..709a436b6e 100644 --- a/utils/collect-uncommitted/CHANGELOG.md +++ b/utils/collect-uncommitted/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/collect-uncommitted + + + + + ## [3.14.1](https://github.com/lerna/lerna/compare/v3.14.0...v3.14.1) (2019-05-15) diff --git a/utils/collect-uncommitted/package.json b/utils/collect-uncommitted/package.json index 1ff55d63f1..8cf1f3c029 100644 --- a/utils/collect-uncommitted/package.json +++ b/utils/collect-uncommitted/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/collect-uncommitted", - "version": "3.14.1", + "version": "3.14.2", "description": "Collect uncommitted changes to working tree for display in error messages", "keywords": [ "lerna", diff --git a/utils/collect-updates/CHANGELOG.md b/utils/collect-updates/CHANGELOG.md index c3f1b6c4aa..294f762e63 100644 --- a/utils/collect-updates/CHANGELOG.md +++ b/utils/collect-updates/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/collect-updates + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) diff --git a/utils/collect-updates/package.json b/utils/collect-updates/package.json index 0b9b9949c0..2804f89a52 100644 --- a/utils/collect-updates/package.json +++ b/utils/collect-updates/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/collect-updates", - "version": "3.14.0", + "version": "3.14.2", "description": "An internal Lerna tool", "keywords": [ "lerna", diff --git a/utils/describe-ref/CHANGELOG.md b/utils/describe-ref/CHANGELOG.md index 90ae861099..0819927786 100644 --- a/utils/describe-ref/CHANGELOG.md +++ b/utils/describe-ref/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/describe-ref + + + + + ## [3.13.3](https://github.com/lerna/lerna/compare/v3.13.2...v3.13.3) (2019-04-17) **Note:** Version bump only for package @lerna/describe-ref diff --git a/utils/describe-ref/package.json b/utils/describe-ref/package.json index 8a3a17fee3..e83285bd3b 100644 --- a/utils/describe-ref/package.json +++ b/utils/describe-ref/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/describe-ref", - "version": "3.13.3", + "version": "3.14.2", "description": "Parse git describe output for lerna-related tags", "keywords": [ "lerna", diff --git a/utils/github-client/CHANGELOG.md b/utils/github-client/CHANGELOG.md index 3acce7a321..2e20c8867b 100644 --- a/utils/github-client/CHANGELOG.md +++ b/utils/github-client/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/github-client + + + + + ## [3.13.3](https://github.com/lerna/lerna/compare/v3.13.2...v3.13.3) (2019-04-17) **Note:** Version bump only for package @lerna/github-client diff --git a/utils/github-client/package.json b/utils/github-client/package.json index de4fe95e04..5a604bff33 100644 --- a/utils/github-client/package.json +++ b/utils/github-client/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/github-client", - "version": "3.13.3", + "version": "3.14.2", "description": "An internal Lerna tool", "keywords": [ "lerna", diff --git a/utils/has-npm-version/CHANGELOG.md b/utils/has-npm-version/CHANGELOG.md index ae85ece704..346b5cc565 100644 --- a/utils/has-npm-version/CHANGELOG.md +++ b/utils/has-npm-version/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/has-npm-version + + + + + ## [3.13.3](https://github.com/lerna/lerna/compare/v3.13.2...v3.13.3) (2019-04-17) **Note:** Version bump only for package @lerna/has-npm-version diff --git a/utils/has-npm-version/package.json b/utils/has-npm-version/package.json index d8a74a8d96..a6ae270a6d 100644 --- a/utils/has-npm-version/package.json +++ b/utils/has-npm-version/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/has-npm-version", - "version": "3.13.3", + "version": "3.14.2", "description": "Test if the current version of npm satisfies a given semver range", "keywords": [ "lerna", diff --git a/utils/npm-install/CHANGELOG.md b/utils/npm-install/CHANGELOG.md index 170f68750d..e9d428ba1b 100644 --- a/utils/npm-install/CHANGELOG.md +++ b/utils/npm-install/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/npm-install + + + + + ## [3.13.3](https://github.com/lerna/lerna/compare/v3.13.2...v3.13.3) (2019-04-17) **Note:** Version bump only for package @lerna/npm-install diff --git a/utils/npm-install/package.json b/utils/npm-install/package.json index 1a1ecda2ee..67d73da10b 100644 --- a/utils/npm-install/package.json +++ b/utils/npm-install/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/npm-install", - "version": "3.13.3", + "version": "3.14.2", "description": "An internal Lerna tool", "keywords": [ "lerna", diff --git a/utils/npm-publish/CHANGELOG.md b/utils/npm-publish/CHANGELOG.md index 981b863fe6..e3e8cfbead 100644 --- a/utils/npm-publish/CHANGELOG.md +++ b/utils/npm-publish/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + + +### Bug Fixes + +* **npm-publish:** Use generated manifest when publishing subdirectory ([b922766](https://github.com/lerna/lerna/commit/b922766)), closes [#2113](https://github.com/lerna/lerna/issues/2113) + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) diff --git a/utils/npm-publish/package.json b/utils/npm-publish/package.json index 896d55b7b7..c7cf929df3 100644 --- a/utils/npm-publish/package.json +++ b/utils/npm-publish/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/npm-publish", - "version": "3.14.0", + "version": "3.14.2", "description": "An internal Lerna tool", "keywords": [ "lerna", diff --git a/utils/npm-run-script/CHANGELOG.md b/utils/npm-run-script/CHANGELOG.md index 287e340a9f..040c852483 100644 --- a/utils/npm-run-script/CHANGELOG.md +++ b/utils/npm-run-script/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/npm-run-script + + + + + ## [3.13.3](https://github.com/lerna/lerna/compare/v3.13.2...v3.13.3) (2019-04-17) **Note:** Version bump only for package @lerna/npm-run-script diff --git a/utils/npm-run-script/package.json b/utils/npm-run-script/package.json index 510e411a5f..2c481a922a 100644 --- a/utils/npm-run-script/package.json +++ b/utils/npm-run-script/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/npm-run-script", - "version": "3.13.3", + "version": "3.14.2", "description": "An internal Lerna tool", "keywords": [ "lerna", diff --git a/utils/pack-directory/CHANGELOG.md b/utils/pack-directory/CHANGELOG.md index cb79113d08..47f27fdc1d 100644 --- a/utils/pack-directory/CHANGELOG.md +++ b/utils/pack-directory/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/pack-directory + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) **Note:** Version bump only for package @lerna/pack-directory diff --git a/utils/pack-directory/package.json b/utils/pack-directory/package.json index 91775c8d4c..435e8ab5dc 100644 --- a/utils/pack-directory/package.json +++ b/utils/pack-directory/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/pack-directory", - "version": "3.14.0", + "version": "3.14.2", "description": "Pack a directory into an npm package tarball", "keywords": [ "lerna", diff --git a/utils/rimraf-dir/CHANGELOG.md b/utils/rimraf-dir/CHANGELOG.md index f9d32f8cfd..a54e117fa5 100644 --- a/utils/rimraf-dir/CHANGELOG.md +++ b/utils/rimraf-dir/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/rimraf-dir + + + + + ## [3.13.3](https://github.com/lerna/lerna/compare/v3.13.2...v3.13.3) (2019-04-17) **Note:** Version bump only for package @lerna/rimraf-dir diff --git a/utils/rimraf-dir/package.json b/utils/rimraf-dir/package.json index 5fc187cd6d..0824299ce7 100644 --- a/utils/rimraf-dir/package.json +++ b/utils/rimraf-dir/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/rimraf-dir", - "version": "3.13.3", + "version": "3.14.2", "description": "Run rimraf on a directory in a subprocess to hack around slowness", "keywords": [ "lerna", diff --git a/utils/symlink-binary/CHANGELOG.md b/utils/symlink-binary/CHANGELOG.md index 83698b27d7..b6853197f8 100644 --- a/utils/symlink-binary/CHANGELOG.md +++ b/utils/symlink-binary/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/symlink-binary + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) diff --git a/utils/symlink-binary/package.json b/utils/symlink-binary/package.json index 880208b8cf..9eb3361d04 100644 --- a/utils/symlink-binary/package.json +++ b/utils/symlink-binary/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/symlink-binary", - "version": "3.14.0", + "version": "3.14.2", "description": "An internal Lerna tool", "keywords": [ "lerna", diff --git a/utils/symlink-dependencies/CHANGELOG.md b/utils/symlink-dependencies/CHANGELOG.md index aecbfbc40e..0545aef584 100644 --- a/utils/symlink-dependencies/CHANGELOG.md +++ b/utils/symlink-dependencies/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. +## [3.14.2](https://github.com/lerna/lerna/compare/v3.14.1...v3.14.2) (2019-06-09) + +**Note:** Version bump only for package @lerna/symlink-dependencies + + + + + # [3.14.0](https://github.com/lerna/lerna/compare/v3.13.4...v3.14.0) (2019-05-14) **Note:** Version bump only for package @lerna/symlink-dependencies diff --git a/utils/symlink-dependencies/package.json b/utils/symlink-dependencies/package.json index 722efaa214..b09a95a9b5 100644 --- a/utils/symlink-dependencies/package.json +++ b/utils/symlink-dependencies/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/symlink-dependencies", - "version": "3.14.0", + "version": "3.14.2", "description": "Lerna's internal symlinking tool", "keywords": [ "lerna",