summaryrefslogtreecommitdiff
path: root/packages/astro-rss/CHANGELOG.md
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2023-03-13 13:05:43 -0700
committerGravatar GitHub <noreply@github.com> 2023-03-13 16:05:43 -0400
commit43daac7a9b4cc793369bbeb3f722f8de9d8f64c8 (patch)
treecd65bb1f3047598c345c54da40d83eef7beda61c /packages/astro-rss/CHANGELOG.md
parent9676f948402aadd0b8b36d3af0df423722b68129 (diff)
downloadastro-43daac7a9b4cc793369bbeb3f722f8de9d8f64c8.tar.gz
astro-43daac7a9b4cc793369bbeb3f722f8de9d8f64c8.tar.zst
astro-43daac7a9b4cc793369bbeb3f722f8de9d8f64c8.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/astro-rss/CHANGELOG.md')
-rw-r--r--packages/astro-rss/CHANGELOG.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/astro-rss/CHANGELOG.md b/packages/astro-rss/CHANGELOG.md
index 4edff3029..2f5c0d023 100644
--- a/packages/astro-rss/CHANGELOG.md
+++ b/packages/astro-rss/CHANGELOG.md
@@ -1,5 +1,22 @@
# @astrojs/rss
+## 2.3.0
+
+### Minor Changes
+
+- [#6453](https://github.com/withastro/astro/pull/6453) [`2e362042c`](https://github.com/withastro/astro/commit/2e362042c222298fd6cd80a64c1d7b7f3f608a79) Thanks [@ematipico](https://github.com/ematipico)! - Added `trailingSlash` option to control whether or not the emitted URLs should have trailing slashes.
+
+ ```js
+ import rss from '@astrojs/rss';
+
+ export const get = () =>
+ rss({
+ trailingSlash: false,
+ });
+ ```
+
+ By passing `false`, the emitted links won't have trailing slashes.
+
## 2.2.0
### Minor Changes