From a15ef92c0bb156fae9cfaec0e7b39a558e822be4 Mon Sep 17 00:00:00 2001 From: Houston (Bot) Date: Tue, 11 Jul 2023 03:32:18 -0700 Subject: [ci] release (#319) Co-authored-by: github-actions[bot] --- .changeset/clean-lamps-juggle.md | 5 ----- .changeset/curvy-points-juggle.md | 5 ----- .changeset/green-jars-march.md | 5 ----- .changeset/rotten-shoes-fix.md | 5 ----- examples/basics/package.json | 2 +- packages/starlight/CHANGELOG.md | 14 ++++++++++++++ packages/starlight/package.json | 2 +- pnpm-lock.yaml | 2 +- 8 files changed, 17 insertions(+), 23 deletions(-) delete mode 100644 .changeset/clean-lamps-juggle.md delete mode 100644 .changeset/curvy-points-juggle.md delete mode 100644 .changeset/green-jars-march.md delete mode 100644 .changeset/rotten-shoes-fix.md diff --git a/.changeset/clean-lamps-juggle.md b/.changeset/clean-lamps-juggle.md deleted file mode 100644 index cbbc92ad..00000000 --- a/.changeset/clean-lamps-juggle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight': minor ---- - -Add a `not-content` CSS class that allows users to opt out of Starlight’s default content styling diff --git a/.changeset/curvy-points-juggle.md b/.changeset/curvy-points-juggle.md deleted file mode 100644 index 9829d1ff..00000000 --- a/.changeset/curvy-points-juggle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/starlight": minor ---- - -Improve `` component keyboard interactions diff --git a/.changeset/green-jars-march.md b/.changeset/green-jars-march.md deleted file mode 100644 index eb6d1171..00000000 --- a/.changeset/green-jars-march.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/starlight": minor ---- - -Add new global `pagination` option defaulting to `true` to define whether or not the previous and next page links are shown in the footer. A page can override this setting or the link text and/or URL using the new `prev` and `next` frontmatter fields. diff --git a/.changeset/rotten-shoes-fix.md b/.changeset/rotten-shoes-fix.md deleted file mode 100644 index 7a165bc7..00000000 --- a/.changeset/rotten-shoes-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/starlight": patch ---- - -Support relative paths in Starlight config for `customCSS` and `logo` paths diff --git a/examples/basics/package.json b/examples/basics/package.json index 68644e99..b7454f20 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/starlight": "^0.4.2", + "@astrojs/starlight": "^0.5.0", "astro": "2.7.0", "sharp": "^0.32.1" } diff --git a/packages/starlight/CHANGELOG.md b/packages/starlight/CHANGELOG.md index 315ff84d..69763b17 100644 --- a/packages/starlight/CHANGELOG.md +++ b/packages/starlight/CHANGELOG.md @@ -1,5 +1,19 @@ # @astrojs/starlight +## 0.5.0 + +### Minor Changes + +- [#313](https://github.com/withastro/starlight/pull/313) [`dc42569`](https://github.com/withastro/starlight/commit/dc42569bddfae2c48ea60c0dd5cc70643a129a68) Thanks [@delucis](https://github.com/delucis)! - Add a `not-content` CSS class that allows users to opt out of Starlight’s default content styling + +- [#297](https://github.com/withastro/starlight/pull/297) [`fb15a9b`](https://github.com/withastro/starlight/commit/fb15a9b65252ac5fa32304096fbdb49ecdd6009b) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Improve `` component keyboard interactions + +- [#303](https://github.com/withastro/starlight/pull/303) [`69b7d4c`](https://github.com/withastro/starlight/commit/69b7d4c23761a45dc2b9ea75c6c9c904a885ba5d) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Add new global `pagination` option defaulting to `true` to define whether or not the previous and next page links are shown in the footer. A page can override this setting or the link text and/or URL using the new `prev` and `next` frontmatter fields. + +### Patch Changes + +- [#318](https://github.com/withastro/starlight/pull/318) [`5db3e6e`](https://github.com/withastro/starlight/commit/5db3e6ea2e5cb7d9552fc54567811358851fb533) Thanks [@delucis](https://github.com/delucis)! - Support relative paths in Starlight config for `customCSS` and `logo` paths + ## 0.4.2 ### Patch Changes diff --git a/packages/starlight/package.json b/packages/starlight/package.json index e41d7d6c..5addecfb 100644 --- a/packages/starlight/package.json +++ b/packages/starlight/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/starlight", - "version": "0.4.2", + "version": "0.5.0", "description": "Build beautiful, high-performance documentation websites with Astro", "scripts": {}, "keywords": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e4cb870e..bd321cdb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -87,7 +87,7 @@ importers: examples/basics: dependencies: '@astrojs/starlight': - specifier: ^0.4.2 + specifier: ^0.5.0 version: link:../../packages/starlight astro: specifier: 2.7.0 -- cgit