From e28612468b366960f192166d6aca875e7bfd138b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Aug 2026 22:29:09 +0000 Subject: [PATCH] Prepare Release v1.0.0 using 'release-plan' --- .release-plan.json | 18 ++++++++++++++++++ CHANGELOG.md | 11 +++++++++++ packages/starpod/package.json | 8 ++++++-- 3 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 .release-plan.json diff --git a/.release-plan.json b/.release-plan.json new file mode 100644 index 0000000..b14999d --- /dev/null +++ b/.release-plan.json @@ -0,0 +1,18 @@ +{ + "solution": { + "starpod": { + "impact": "major", + "oldVersion": "0.1.0", + "newVersion": "1.0.0", + "tagName": "latest", + "constraints": [ + { + "impact": "major", + "reason": "Appears in changelog section :boom: Breaking Change" + } + ], + "pkgJSONPath": "./packages/starpod/package.json" + } + }, + "description": "## Release (2026-08-29)\n\n* starpod 1.0.0 (major)\n\n#### :boom: Breaking Change\n* `starpod`\n * [#60](https://github.com/shipshapecode/starpod/pull/60) Convert Starpod into an installable Astro integration ([@RobbieTheWagner](https://github.com/RobbieTheWagner))\n\n#### Committers: 1\n- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))\n" +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 825c32f..ff70431 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,12 @@ # Changelog + +## Release (2026-08-29) + +* starpod 1.0.0 (major) + +#### :boom: Breaking Change +* `starpod` + * [#60](https://github.com/shipshapecode/starpod/pull/60) Convert Starpod into an installable Astro integration ([@RobbieTheWagner](https://github.com/RobbieTheWagner)) + +#### Committers: 1 +- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner)) diff --git a/packages/starpod/package.json b/packages/starpod/package.json index f257822..14bc9c7 100644 --- a/packages/starpod/package.json +++ b/packages/starpod/package.json @@ -1,7 +1,7 @@ { "name": "starpod", "type": "module", - "version": "0.1.0", + "version": "1.0.0", "description": "Turn an RSS feed into a full podcast website. An Astro integration.", "repository": { "type": "git", @@ -18,7 +18,11 @@ "bin": { "starpod": "./cli/index.mjs" }, - "files": ["cli", "src", "tsconfig.json"], + "files": [ + "cli", + "src", + "tsconfig.json" + ], "exports": { ".": "./src/index.ts", "./config": "./src/config.ts",