From 9ac4259d2e27ea87990a704e31f6df211ef16ffb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Dec 2021 04:57:08 -0800 Subject: [PATCH] chore: release (#2149) Co-authored-by: github-actions[bot] --- .changeset/dirty-guests-wash.md | 5 ----- .changeset/ninety-actors-try.md | 5 ----- .changeset/purple-paws-shave.md | 5 ----- examples/blog-multiple-authors/package.json | 2 +- examples/blog/package.json | 2 +- examples/docs/package.json | 2 +- examples/framework-lit/package.json | 2 +- examples/framework-multiple/package.json | 2 +- examples/framework-preact/package.json | 2 +- examples/framework-react/package.json | 2 +- examples/framework-solid/package.json | 2 +- examples/framework-svelte/package.json | 2 +- examples/framework-vue/package.json | 2 +- examples/minimal/package.json | 2 +- examples/portfolio-svelte/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/starter/package.json | 2 +- examples/subpath/package.json | 2 +- examples/with-markdown-plugins/package.json | 2 +- examples/with-markdown/package.json | 2 +- examples/with-nanostores/package.json | 2 +- examples/with-tailwindcss/package.json | 2 +- examples/with-vite-plugin-pwa/package.json | 2 +- packages/astro/CHANGELOG.md | 8 ++++++++ packages/astro/package.json | 2 +- packages/create-astro/CHANGELOG.md | 6 ++++++ packages/create-astro/package.json | 2 +- www/package.json | 2 +- 28 files changed, 37 insertions(+), 38 deletions(-) delete mode 100644 .changeset/dirty-guests-wash.md delete mode 100644 .changeset/ninety-actors-try.md delete mode 100644 .changeset/purple-paws-shave.md diff --git a/.changeset/dirty-guests-wash.md b/.changeset/dirty-guests-wash.md deleted file mode 100644 index c47deb09a4..0000000000 --- a/.changeset/dirty-guests-wash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Improve error message on bad JS/TS frontmatter diff --git a/.changeset/ninety-actors-try.md b/.changeset/ninety-actors-try.md deleted file mode 100644 index c1ea3bd674..0000000000 --- a/.changeset/ninety-actors-try.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Bugfix: missing CSS files diff --git a/.changeset/purple-paws-shave.md b/.changeset/purple-paws-shave.md deleted file mode 100644 index a953bec715..0000000000 --- a/.changeset/purple-paws-shave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-astro': patch ---- - -Fix create-astro export map entry diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index e8d2bf2a7d..93b32997d2 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 4b652c6ad1..ef2ee4b102 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index 5ffec5e7e5..0653578cda 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -12,7 +12,7 @@ "@docsearch/react": "^1.0.0-alpha.27" }, "devDependencies": { - "astro": "^0.21.11", + "astro": "^0.21.12", "@snowpack/plugin-dotenv": "^2.1.0" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index c42a41179c..e0739b7f9f 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/renderer-lit": "^0.2.1", - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 894c86598f..e4e8bd3ca7 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/renderer-solid": "^0.2.1", - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index fc333c8118..483b01cb26 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 1408c830e0..16afc684f5 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 286da4f0db..9d5e5fd71d 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/renderer-solid": "^0.2.1", - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 7482047e98..62f04c997d 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index e3b196a472..43e8f484f1 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 45aff28d7c..f501c90a36 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/portfolio-svelte/package.json b/examples/portfolio-svelte/package.json index 3ceca8bd2b..d3143778a2 100644 --- a/examples/portfolio-svelte/package.json +++ b/examples/portfolio-svelte/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 88601b0302..f175507ad6 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/starter/package.json b/examples/starter/package.json index 089b7b7041..5f636bd7c8 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/subpath/package.json b/examples/subpath/package.json index a84d2dd0f1..9d1e766849 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 7ce5df0098..3b4d3bcaf4 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11", + "astro": "^0.21.12", "rehype-add-classes": "^1.0.0", "rehype-autolink-headings": "^6.1.0", "rehype-slug": "^5.0.0", diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index fdfae6f3d9..7cd5fa718b 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 80ee386f8a..2806735d1c 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -16,6 +16,6 @@ }, "devDependencies": { "@astrojs/renderer-solid": "^0.2.1", - "astro": "^0.21.11" + "astro": "^0.21.12" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 0e12e24a56..edd6027d27 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11", + "astro": "^0.21.12", "autoprefixer": "^10.4.0", "tailwindcss": "^2.2.19" } diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index a7e3faf311..faf3416407 100644 --- a/examples/with-vite-plugin-pwa/package.json +++ b/examples/with-vite-plugin-pwa/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11", + "astro": "^0.21.12", "vite-plugin-pwa": "^0.11.5" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 2b8ffd5bb1..9e917d305b 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,13 @@ # astro +## 0.21.12 + +### Patch Changes + +- [#2115](https://github.com/withastro/astro/pull/2115) [`0ef682c9`](https://github.com/withastro/astro/commit/0ef682c924a0836790acd2d4f8c1663eb99ffb75) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Improve error message on bad JS/TS frontmatter + +* [#2156](https://github.com/withastro/astro/pull/2156) [`ef3950c6`](https://github.com/withastro/astro/commit/ef3950c647e523ff6f36cfa096c4a92596d32afa) Thanks [@drwpow](https://github.com/drwpow)! - Bugfix: missing CSS files + ## 0.21.11 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 713e58a836..c7f8b76abc 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.21.11", + "version": "0.21.12", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "author": "withastro", "license": "MIT", diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md index 995c782cd9..5d084cd278 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -1,5 +1,11 @@ # create-astro +## 0.6.10 + +### Patch Changes + +- [#2150](https://github.com/withastro/astro/pull/2150) [`d5ebd9d1`](https://github.com/withastro/astro/commit/d5ebd9d178ed4e5d15ef43f32217c16d44f19151) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Fix create-astro export map entry + ## 0.6.9 ### Patch Changes diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index a17457aacf..a769903d7b 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -1,6 +1,6 @@ { "name": "create-astro", - "version": "0.6.9", + "version": "0.6.10", "type": "module", "repository": { "type": "git", diff --git a/www/package.json b/www/package.json index af0bf98373..e2cbb49d19 100644 --- a/www/package.json +++ b/www/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.21.12" } }