From b54c01bf66a75bea7cde909418cc5373e666b7fa Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
 <41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 11 Aug 2021 15:01:00 -0700
Subject: [PATCH] Version Packages (#1064)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
---
 .changeset/curly-queens-pay.md               |  5 -----
 .changeset/fair-dogs-tie.md                  |  5 -----
 .changeset/few-carpets-sing.md               |  5 -----
 .changeset/strong-pets-turn.md               |  5 -----
 .changeset/wild-suits-raise.md               |  5 -----
 docs/CHANGELOG.md                            |  6 ++++++
 docs/package.json                            |  4 ++--
 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/portfolio/package.json              |  2 +-
 examples/snowpack/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                  | 10 ++++++++++
 packages/astro/package.json                  |  4 ++--
 packages/renderers/renderer-vue/CHANGELOG.md |  6 ++++++
 packages/renderers/renderer-vue/package.json |  2 +-
 tools/language-server/package.json           |  2 +-
 www/package.json                             |  2 +-
 30 files changed, 46 insertions(+), 49 deletions(-)
 delete mode 100644 .changeset/curly-queens-pay.md
 delete mode 100644 .changeset/fair-dogs-tie.md
 delete mode 100644 .changeset/few-carpets-sing.md
 delete mode 100644 .changeset/strong-pets-turn.md
 delete mode 100644 .changeset/wild-suits-raise.md

diff --git a/.changeset/curly-queens-pay.md b/.changeset/curly-queens-pay.md
deleted file mode 100644
index 9199a6d02f..0000000000
--- a/.changeset/curly-queens-pay.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-- Allow Markdown with scoped styles to coexist happily with code syntax highlighting via Prism
diff --git a/.changeset/fair-dogs-tie.md b/.changeset/fair-dogs-tie.md
deleted file mode 100644
index caf00c7550..0000000000
--- a/.changeset/fair-dogs-tie.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Properly escapes script tags with nested client:load directives when passing Astro components into framework components via props. Browsers interpret script end tags in strings as script end tags, resulting in syntax errors.
diff --git a/.changeset/few-carpets-sing.md b/.changeset/few-carpets-sing.md
deleted file mode 100644
index 3b938a3b20..0000000000
--- a/.changeset/few-carpets-sing.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"astro": patch
----
-
-Allow dev server port to be set by `PORT` environment variable
diff --git a/.changeset/strong-pets-turn.md b/.changeset/strong-pets-turn.md
deleted file mode 100644
index 9912a07b3b..0000000000
--- a/.changeset/strong-pets-turn.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'docs': patch
----
-
-change Spanish translations for Getting Started page
diff --git a/.changeset/wild-suits-raise.md b/.changeset/wild-suits-raise.md
deleted file mode 100644
index a9ef96acbe..0000000000
--- a/.changeset/wild-suits-raise.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@astrojs/renderer-vue": patch
----
-
-Bump Vue version to latest stable
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index fb4c1afd58..dc735847c0 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -1,5 +1,11 @@
 # docs
 
+## 0.0.4
+
+### Patch Changes
+
+- adc767c5: change Spanish translations for Getting Started page
+
 ## 0.0.3
 
 ### Patch Changes
diff --git a/docs/package.json b/docs/package.json
index a1d587953b..08801b5900 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -1,6 +1,6 @@
 {
   "name": "docs",
-  "version": "0.0.3",
+  "version": "0.0.4",
   "private": true,
   "scripts": {
     "start": "astro dev",
@@ -15,7 +15,7 @@
   },
   "devDependencies": {
     "@snowpack/plugin-dotenv": "^2.1.0",
-    "astro": "^0.18.2",
+    "astro": "^0.18.10",
     "broken-link-checker": "^0.7.8",
     "npm-run-all": "^4.1.5",
     "pa11y-ci": "^2.4.2",
diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json
index a052652031..c5fc98c184 100644
--- a/examples/blog-multiple-authors/package.json
+++ b/examples/blog-multiple-authors/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/blog/package.json b/examples/blog/package.json
index e1dbaec2d4..940270957c 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/docs/package.json b/examples/docs/package.json
index a023d75c50..f58d9cea37 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index f7aacb52e5..41ff854744 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -8,7 +8,7 @@
   },
   "devDependencies": {
     "@astrojs/renderer-lit": "^0.1.0",
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 9227ccbe7f..b88237388f 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 8bc4cf6f13..e43d984721 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 1a8386ddda..b5e7d7ac6f 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index a079bcce09..375bb4ade0 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9",
+    "astro": "^0.18.10",
     "@astrojs/renderer-solid": "0.1.0"
   },
   "snowpack": {
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 9c484b5ae7..afbc47642b 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 4c7130fccb..4fd303edf8 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 875d3a73c3..51886a785e 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/snowpack/package.json b/examples/snowpack/package.json
index 105aa88a2e..0741fee7a6 100644
--- a/examples/snowpack/package.json
+++ b/examples/snowpack/package.json
@@ -18,7 +18,7 @@
   "devDependencies": {
     "@contentful/rich-text-html-renderer": "^14.1.2",
     "@contentful/rich-text-types": "^14.1.2",
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/starter/package.json b/examples/starter/package.json
index 3f874e0f46..aee0b6c085 100644
--- a/examples/starter/package.json
+++ b/examples/starter/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index a43b3d461c..25879bc80e 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9",
+    "astro": "^0.18.10",
     "rehype-add-classes": "^1.0.0",
     "rehype-toc": "^3.0.2",
     "remark-autolink-headings": "^6.0.1",
diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json
index b7339336ae..158f2e281e 100644
--- a/examples/with-markdown/package.json
+++ b/examples/with-markdown/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index c5a0351448..948c148603 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -7,7 +7,7 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "dependencies": {
     "nanostores": "^0.3.3"
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 47ff99fa1e..30be8dde60 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -8,7 +8,7 @@
   },
   "devDependencies": {
     "tailwindcss": "^2.1.2",
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   },
   "snowpack": {
     "workspaceRoot": "../.."
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index edfd2de0a7..6a084d7e2b 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,15 @@
 # astro
 
+## 0.18.10
+
+### Patch Changes
+
+- 2321b577: - Allow Markdown with scoped styles to coexist happily with code syntax highlighting via Prism
+- 618ea3a8: Properly escapes script tags with nested client:load directives when passing Astro components into framework components via props. Browsers interpret script end tags in strings as script end tags, resulting in syntax errors.
+- 939b9d01: Allow dev server port to be set by `PORT` environment variable
+- Updated dependencies [1339d5e3]
+  - @astrojs/renderer-vue@0.1.7
+
 ## 0.18.9
 
 ### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 7f9201d2a5..130f490416 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
 {
   "name": "astro",
-  "version": "0.18.9",
+  "version": "0.18.10",
   "author": "Skypack",
   "license": "MIT",
   "type": "module",
@@ -49,7 +49,7 @@
     "@astrojs/renderer-preact": "0.2.1",
     "@astrojs/renderer-react": "0.2.0",
     "@astrojs/renderer-svelte": "0.1.1",
-    "@astrojs/renderer-vue": "0.1.6",
+    "@astrojs/renderer-vue": "0.1.7",
     "@babel/code-frame": "^7.12.13",
     "@babel/core": "^7.14.6",
     "@babel/generator": "^7.13.9",
diff --git a/packages/renderers/renderer-vue/CHANGELOG.md b/packages/renderers/renderer-vue/CHANGELOG.md
index 6c8a20e95a..ef1d57c18b 100644
--- a/packages/renderers/renderer-vue/CHANGELOG.md
+++ b/packages/renderers/renderer-vue/CHANGELOG.md
@@ -1,5 +1,11 @@
 # @astrojs/renderer-vue
 
+## 0.1.7
+
+### Patch Changes
+
+- 1339d5e3: Bump Vue version to latest stable
+
 ## 0.1.6
 
 ### Patch Changes
diff --git a/packages/renderers/renderer-vue/package.json b/packages/renderers/renderer-vue/package.json
index 1851e62a97..97d06f6f14 100644
--- a/packages/renderers/renderer-vue/package.json
+++ b/packages/renderers/renderer-vue/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@astrojs/renderer-vue",
-  "version": "0.1.6",
+  "version": "0.1.7",
   "type": "module",
   "exports": {
     ".": "./index.js",
diff --git a/tools/language-server/package.json b/tools/language-server/package.json
index 2ff3245836..b12a862c40 100644
--- a/tools/language-server/package.json
+++ b/tools/language-server/package.json
@@ -29,7 +29,7 @@
     "vscode-languageserver-textdocument": "^1.0.1"
   },
   "devDependencies": {
-    "astro": "0.18.9",
+    "astro": "0.18.10",
     "astro-scripts": "0.0.1"
   }
 }
diff --git a/www/package.json b/www/package.json
index 39ae75dc2a..40577c3920 100644
--- a/www/package.json
+++ b/www/package.json
@@ -7,6 +7,6 @@
     "build": "astro build"
   },
   "devDependencies": {
-    "astro": "^0.18.9"
+    "astro": "^0.18.10"
   }
 }