From bf6357a233216de0cef5b866ae432f9020ec7e32 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Sep 2021 09:10:41 -0400 Subject: [PATCH] Version Packages (#1442) Co-authored-by: github-actions[bot] --- .changeset/blue-wombats-hammer.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/package.json | 2 +- examples/starter/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 +- packages/astro/CHANGELOG.md | 6 ++++++ packages/astro/package.json | 2 +- www/package.json | 2 +- 21 files changed, 25 insertions(+), 24 deletions(-) delete mode 100644 .changeset/blue-wombats-hammer.md diff --git a/.changeset/blue-wombats-hammer.md b/.changeset/blue-wombats-hammer.md deleted file mode 100644 index da9b1e3f05..0000000000 --- a/.changeset/blue-wombats-hammer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixed props shadowing diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index c75207c0f7..542a48ff59 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7" + "astro": "^0.20.8" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/blog/package.json b/examples/blog/package.json index 616a3949d6..2e47702ae6 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7" + "astro": "^0.20.8" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/docs/package.json b/examples/docs/package.json index 8507a2867a..373a70e642 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.20.7", + "astro": "^0.20.8", "@snowpack/plugin-dotenv": "^2.1.0" }, "snowpack": { diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index 3bea756a37..44da412d28 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/renderer-lit": "^0.1.1", - "astro": "^0.20.7" + "astro": "^0.20.8" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 768b1b2782..f3ea745fb2 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7", + "astro": "^0.20.8", "@astrojs/renderer-solid": "^0.1.1" }, "snowpack": { diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index ea05b4a764..8e0e4f2bd8 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7" + "astro": "^0.20.8" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index b91465e437..2a65821d0a 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7" + "astro": "^0.20.8" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 5804c2d869..8c8829c3b8 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7", + "astro": "^0.20.8", "@astrojs/renderer-solid": "0.1.1" }, "snowpack": { diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 286b770d06..55d55a6a85 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7" + "astro": "^0.20.8" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index a6a5d67d99..f4ae087829 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7" + "astro": "^0.20.8" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/minimal/package.json b/examples/minimal/package.json index e9d99ca576..09fee0ba43 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7" + "astro": "^0.20.8" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 60d3d02142..234bd78841 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7" + "astro": "^0.20.8" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/starter/package.json b/examples/starter/package.json index 144539ce4d..5b96e9bb69 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7" + "astro": "^0.20.8" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 7caa728fb2..ac5f464883 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.20.7", + "astro": "^0.20.8", "rehype-add-classes": "^1.0.0", "rehype-autolink-headings": "^6.1.0", "rehype-toc": "^3.0.2", diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index 30c634aabb..932919ef82 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7" + "astro": "^0.20.8" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 72150367a2..2d65a7b057 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7" + "astro": "^0.20.8" }, "dependencies": { "nanostores": "^0.3.3" diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 9415138601..76002def3c 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "tailwindcss": "^2.1.2", - "astro": "^0.20.7" + "astro": "^0.20.8" }, "snowpack": { "workspaceRoot": "../.." diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 91db8371e7..eccfb1bf72 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,11 @@ # astro +## 0.20.8 + +### Patch Changes + +- 30835635: Fixed props shadowing + ## 0.20.7 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 7dcceda8e1..5325dfd091 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.20.7", + "version": "0.20.8", "author": "Skypack", "license": "MIT", "type": "module", diff --git a/www/package.json b/www/package.json index 653e1c0265..9a1ae1298e 100644 --- a/www/package.json +++ b/www/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.7" + "astro": "^0.20.8" } }