From 3bb97ea328262519c754e4c8f6fa924d8a65801c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Aug 2021 10:46:14 -0400 Subject: [PATCH] Version Packages (#1246) Co-authored-by: github-actions[bot] --- .changeset/light-masks-warn.md | 5 ----- .changeset/wise-maps-pump.md | 5 ----- .changeset/young-trainers-rule.md | 14 -------------- docs/CHANGELOG.md | 14 ++++++++++++++ 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/minimal/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-parser/CHANGELOG.md | 6 ++++++ packages/astro-parser/package.json | 2 +- packages/astro/CHANGELOG.md | 17 +++++++++++++++++ packages/astro/package.json | 4 ++-- packages/create-astro/CHANGELOG.md | 6 ++++++ packages/create-astro/package.json | 2 +- www/package.json | 2 +- 30 files changed, 68 insertions(+), 49 deletions(-) delete mode 100644 .changeset/light-masks-warn.md delete mode 100644 .changeset/wise-maps-pump.md delete mode 100644 .changeset/young-trainers-rule.md diff --git a/.changeset/light-masks-warn.md b/.changeset/light-masks-warn.md deleted file mode 100644 index 70d122b2a..000000000 --- a/.changeset/light-masks-warn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-astro': patch ---- - -Adds a new template 'minimal' which does not include a framework diff --git a/.changeset/wise-maps-pump.md b/.changeset/wise-maps-pump.md deleted file mode 100644 index 91c05719e..000000000 --- a/.changeset/wise-maps-pump.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/parser': patch ---- - -fixed an issue using namespaced attributes in astro files diff --git a/.changeset/young-trainers-rule.md b/.changeset/young-trainers-rule.md deleted file mode 100644 index fb248edeb..000000000 --- a/.changeset/young-trainers-rule.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -'docs': patch -'astro': patch ---- - -# Hoisted scripts - -This change adds support for hoisted scripts, allowing you to bundle scripts together for a page and hoist them to the top (in the head): - -```astro - -``` \ No newline at end of file diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 433b54eeb..c96b3b27c 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,19 @@ # docs +## 0.0.6 + +### Patch Changes + +- 788c769d: # Hoisted scripts + + This change adds support for hoisted scripts, allowing you to bundle scripts together for a page and hoist them to the top (in the head): + + ```astro + + ``` + ## 0.0.5 ## 0.0.5-next.0 diff --git a/docs/package.json b/docs/package.json index 724adede2..2e76c3009 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "0.0.5", + "version": "0.0.6", "private": true, "scripts": { "dev": "astro dev", @@ -17,7 +17,7 @@ }, "devDependencies": { "@snowpack/plugin-dotenv": "^2.1.0", - "astro": "^0.20.0", + "astro": "^0.20.2", "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 7c3afa11b..40aba9b10 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.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/blog/package.json b/examples/blog/package.json index 95aa637ea..5848cc560 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/docs/package.json b/examples/docs/package.json index 63497b2cc..e1eca7661 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.1", + "astro": "^0.20.2", "@snowpack/plugin-dotenv": "^2.1.0" }, "snowpack": { diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index e462f8368..df1bb43db 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/renderer-lit": "^0.1.0", - "astro": "^0.20.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index a3f6df74b..6463d97c6 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 1af80936d..c8edf0777 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 664f96b83..89ce58689 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 5e162f8cb..fdb9a8dea 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1", + "astro": "^0.20.2", "@astrojs/renderer-solid": "0.1.0" }, "snowpack": { diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index e43dcfbd1..f82ca0ba2 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index ee6907a92..b01b05b41 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 1418ced6a..d20002ecc 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 9b8ab2611..81a11c62e 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/snowpack/package.json b/examples/snowpack/package.json index af0dd6f83..de338ced9 100644 --- a/examples/snowpack/package.json +++ b/examples/snowpack/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@contentful/rich-text-html-renderer": "^14.1.2", "@contentful/rich-text-types": "^14.1.2", - "astro": "^0.20.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/starter/package.json b/examples/starter/package.json index ba053c83e..6d8372f60 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index ba3b2e7a9..07da66dd7 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.1", + "astro": "^0.20.2", "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 921de79e1..5886a618f 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 1a0cdce69..7a81cbc53 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1" + "astro": "^0.20.2" }, "dependencies": { "nanostores": "^0.3.3" diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index bce81a944..03e8be7f9 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.1" + "astro": "^0.20.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/packages/astro-parser/CHANGELOG.md b/packages/astro-parser/CHANGELOG.md index 3da1b144d..f3768e6e2 100644 --- a/packages/astro-parser/CHANGELOG.md +++ b/packages/astro-parser/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/parser +## 0.20.2 + +### Patch Changes + +- 5d2ea578: fixed an issue using namespaced attributes in astro files + ## 0.18.6 ## 0.18.5 diff --git a/packages/astro-parser/package.json b/packages/astro-parser/package.json index fa617cad8..d73710c52 100644 --- a/packages/astro-parser/package.json +++ b/packages/astro-parser/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/parser", - "version": "0.18.6", + "version": "0.20.2", "author": "Skypack", "license": "MIT", "type": "commonjs", diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index efc9bfee4..c67a7ecdf 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,22 @@ # astro +## 0.20.2 + +### Patch Changes + +- 788c769d: # Hoisted scripts + + This change adds support for hoisted scripts, allowing you to bundle scripts together for a page and hoist them to the top (in the head): + + ```astro + + ``` + +- Updated dependencies [5d2ea578] + - @astrojs/parser@0.20.2 + ## 0.20.1 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 1aa9d6e68..aad40df2a 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.20.1", + "version": "0.20.2", "author": "Skypack", "license": "MIT", "type": "module", @@ -45,7 +45,7 @@ }, "dependencies": { "@astrojs/markdown-support": "0.3.0", - "@astrojs/parser": "0.18.6", + "@astrojs/parser": "0.20.2", "@astrojs/prism": "0.2.2", "@astrojs/renderer-preact": "0.2.1", "@astrojs/renderer-react": "0.2.0", diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md index 730eff143..60a97ca9e 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -1,5 +1,11 @@ # create-astro +## 0.6.1 + +### Patch Changes + +- 24dce41c: Adds a new template 'minimal' which does not include a framework + ## 0.6.0 ### Minor Changes diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index 1dea2f035..978e9c3a3 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -1,6 +1,6 @@ { "name": "create-astro", - "version": "0.6.0", + "version": "0.6.1", "type": "module", "repository": { "type": "git", diff --git a/www/package.json b/www/package.json index 028aeda81..ee0151115 100644 --- a/www/package.json +++ b/www/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.20.1" + "astro": "^0.20.2" } }