diff --git a/.release-plan.json b/.release-plan.json index 8594071..fdb66e3 100644 --- a/.release-plan.json +++ b/.release-plan.json @@ -1,17 +1,25 @@ { "solution": { "release-plan": { - "impact": "patch", - "oldVersion": "0.2.2", - "newVersion": "0.2.3", + "impact": "minor", + "oldVersion": "0.2.3", + "newVersion": "0.3.0", "constraints": [ + { + "impact": "minor", + "reason": "Appears in changelog section :rocket: Enhancement" + }, + { + "impact": "patch", + "reason": "Appears in changelog section :bug: Bug Fix" + }, { "impact": "patch", - "reason": "Appears in changelog section :memo: Documentation" + "reason": "Appears in changelog section :house: Internal" } ], "pkgJSONPath": "./package.json" } }, - "description": "## Release (2023-11-23)\n\nrelease-plan 0.2.3 (patch)\n\n#### :memo: Documentation\n* [#17](https://github.com/embroider-build/release-plan/pull/17) add a basic readme ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n" + "description": "## Release (2023-11-24)\n\nrelease-plan 0.3.0 (minor)\n\n#### :rocket: Enhancement\n* [#24](https://github.com/embroider-build/release-plan/pull/24) add support for npm workspaces ([@mansona](https://github.com/mansona))\n\n#### :bug: Bug Fix\n* [#23](https://github.com/embroider-build/release-plan/pull/23) use require.resolve to find lerna-changelog ([@mansona](https://github.com/mansona))\n* [#21](https://github.com/embroider-build/release-plan/pull/21) don't throw when we encounter an unknown package ([@mansona](https://github.com/mansona))\n* [#20](https://github.com/embroider-build/release-plan/pull/20) fix updating changelog ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* [#25](https://github.com/embroider-build/release-plan/pull/25) remove reference to @embroider ([@mansona](https://github.com/mansona))\n* [#22](https://github.com/embroider-build/release-plan/pull/22) remove unused package.json ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 09731cd..c0d20a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,22 @@ # release-plan Changelog +## Release (2023-11-24) + +release-plan 0.3.0 (minor) + +#### :rocket: Enhancement +* [#24](https://github.com/embroider-build/release-plan/pull/24) add support for npm workspaces ([@mansona](https://github.com/mansona)) + +#### :bug: Bug Fix +* [#23](https://github.com/embroider-build/release-plan/pull/23) use require.resolve to find lerna-changelog ([@mansona](https://github.com/mansona)) +* [#21](https://github.com/embroider-build/release-plan/pull/21) don't throw when we encounter an unknown package ([@mansona](https://github.com/mansona)) +* [#20](https://github.com/embroider-build/release-plan/pull/20) fix updating changelog ([@mansona](https://github.com/mansona)) + +#### :house: Internal +* [#25](https://github.com/embroider-build/release-plan/pull/25) remove reference to @embroider ([@mansona](https://github.com/mansona)) +* [#22](https://github.com/embroider-build/release-plan/pull/22) remove unused package.json ([@mansona](https://github.com/mansona)) + +#### Committers: 1 +- Chris Manson ([@mansona](https://github.com/mansona)) ## Release (2023-11-23) diff --git a/package.json b/package.json index c1b9fef..7a99b7a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "release-plan", - "version": "0.2.3", + "version": "0.3.0", "description": "", "type": "module", "bin": "./dist/cli.js",