Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .release-plan.json
Original file line number Diff line number Diff line change
@@ -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"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
8 changes: 6 additions & 2 deletions packages/starpod/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
Loading