diff --git a/.changeset/cyan-fans-juggle.md b/.changeset/cyan-fans-juggle.md deleted file mode 100644 index 48351cb..0000000 --- a/.changeset/cyan-fans-juggle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@manypkg/cli": minor ---- - -Changed peer and dev dependency relationship check to only require that the upper bound of the dev dep range is within the peer dep range so that cases where the dev dep range allows versions lower than the lower bound of such as a peer dep with `^1.0.0` and dev dep with `*` are allowed and this fixes the regression in 0.8.1 where cases that should have been fine weren't like a peer dep with `^1.0.0` and a dev dep with `^1.1.0` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 4918552..88ff5e6 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,11 @@ # @manypkg/cli +## 0.9.0 + +### Minor Changes + +- [`528bb72`](https://github.com/Thinkmill/manypkg/commit/528bb72bf600de0d135bfd426fe2c3d52fbed223) [#30](https://github.com/Thinkmill/manypkg/pull/30) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Changed peer and dev dependency relationship check to only require that the upper bound of the dev dep range is within the peer dep range so that cases where the dev dep range allows versions lower than the lower bound of such as a peer dep with `^1.0.0` and dev dep with `*` are allowed and this fixes the regression in 0.8.1 where cases that should have been fine weren't like a peer dep with `^1.0.0` and a dev dep with `^1.1.0` + ## 0.8.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 003efca..3802c7a 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@manypkg/cli", - "version": "0.8.1", + "version": "0.9.0", "main": "dist/cli.cjs.js", "module": "dist/cli.esm.js", "license": "MIT",