diff --git a/.changeset/tasty-numbers-destroy.md b/.changeset/tasty-numbers-destroy.md deleted file mode 100644 index 3c07ed14f..000000000 --- a/.changeset/tasty-numbers-destroy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/rss': minor ---- - -Change the optional "canonicalUrl" argument to a required "site" argument. This fixes problems with import.meta.env.SITE. If you want to use your project's "site" field for your RSS feeds, set site: import.meta.env.SITE in the rss function options diff --git a/packages/astro-rss/CHANGELOG.md b/packages/astro-rss/CHANGELOG.md index b27107be6..033af5adc 100644 --- a/packages/astro-rss/CHANGELOG.md +++ b/packages/astro-rss/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/rss +## 0.2.0 + +### Minor Changes + +- [#3301](https://github.com/withastro/astro/pull/3301) [`0efaf110`](https://github.com/withastro/astro/commit/0efaf110fceba149cd41cbaa0f37311e6887cdec) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Change the optional "canonicalUrl" argument to a required "site" argument. This fixes problems with import.meta.env.SITE. If you want to use your project's "site" field for your RSS feeds, set site: import.meta.env.SITE in the rss function options + ## 0.1.1 ### Patch Changes diff --git a/packages/astro-rss/package.json b/packages/astro-rss/package.json index e5f8327e0..5c243483f 100644 --- a/packages/astro-rss/package.json +++ b/packages/astro-rss/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/rss", "description": "Add RSS feeds to your Astro projects", - "version": "0.1.1", + "version": "0.2.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro",