diff --git a/.release-plan.json b/.release-plan.json index 7e94d4a..0be884e 100644 --- a/.release-plan.json +++ b/.release-plan.json @@ -2,16 +2,20 @@ "solution": { "release-plan": { "impact": "minor", - "oldVersion": "0.9.2", - "newVersion": "0.10.0", + "oldVersion": "0.10.0", + "newVersion": "0.11.0", "constraints": [ { "impact": "minor", "reason": "Appears in changelog section :rocket: Enhancement" + }, + { + "impact": "patch", + "reason": "Appears in changelog section :house: Internal" } ], "pkgJSONPath": "./package.json" } }, - "description": "## Release (2024-10-17)\n\nrelease-plan 0.10.0 (minor)\n\n#### :rocket: Enhancement\n* `release-plan`\n * [#81](https://github.com/embroider-build/release-plan/pull/81) Add support for specifying --access, aligning better with default publish behavior ([@saracope](https://github.com/saracope))\n\n#### Committers: 1\n- Sara Cope ([@saracope](https://github.com/saracope))\n" + "description": "## Release (2024-11-24)\n\nrelease-plan 0.11.0 (minor)\n\n#### :rocket: Enhancement\n* `release-plan`\n * [#85](https://github.com/embroider-build/release-plan/pull/85) pass provenance through if provided to publish ([@mansona](https://github.com/mansona))\n * [#68](https://github.com/embroider-build/release-plan/pull/68) add semverIncrementAs option for granular package version control ([@void-mAlex](https://github.com/void-mAlex))\n\n#### :house: Internal\n* `release-plan`\n * [#83](https://github.com/embroider-build/release-plan/pull/83) use corepack to manage pnpm version ([@mansona](https://github.com/mansona))\n\n#### Committers: 2\n- Alex ([@void-mAlex](https://github.com/void-mAlex))\n- Chris Manson ([@mansona](https://github.com/mansona))\n" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 179d8ba..5388470 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # release-plan Changelog +## Release (2024-11-24) + +release-plan 0.11.0 (minor) + +#### :rocket: Enhancement +* `release-plan` + * [#85](https://github.com/embroider-build/release-plan/pull/85) pass provenance through if provided to publish ([@mansona](https://github.com/mansona)) + * [#68](https://github.com/embroider-build/release-plan/pull/68) add semverIncrementAs option for granular package version control ([@void-mAlex](https://github.com/void-mAlex)) + +#### :house: Internal +* `release-plan` + * [#83](https://github.com/embroider-build/release-plan/pull/83) use corepack to manage pnpm version ([@mansona](https://github.com/mansona)) + +#### Committers: 2 +- Alex ([@void-mAlex](https://github.com/void-mAlex)) +- Chris Manson ([@mansona](https://github.com/mansona)) + ## Release (2024-10-17) release-plan 0.10.0 (minor) diff --git a/package.json b/package.json index 2b9859a..2fc77c8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "release-plan", - "version": "0.10.0", + "version": "0.11.0", "description": "", "keywords": [], "repository": "https://github.com/embroider-build/release-plan",