From 52224607190e1b83c29675c3193d0ae69880c492 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 14 Jun 2021 16:12:55 -0400 Subject: [PATCH] Version Packages (#431) Co-authored-by: github-actions[bot] --- .changeset/big-ghosts-prove.md | 5 ----- .changeset/curly-emus-ring.md | 5 ----- .changeset/silent-rocks-relax.md | 5 ----- examples/docs/CHANGELOG.md | 6 ++++++ examples/docs/package.json | 4 ++-- examples/snowpack/package.json | 4 ++-- packages/astro/CHANGELOG.md | 7 +++++++ packages/astro/package.json | 2 +- www/package.json | 2 +- 9 files changed, 19 insertions(+), 21 deletions(-) delete mode 100644 .changeset/big-ghosts-prove.md delete mode 100644 .changeset/curly-emus-ring.md delete mode 100644 .changeset/silent-rocks-relax.md create mode 100644 examples/docs/CHANGELOG.md diff --git a/.changeset/big-ghosts-prove.md b/.changeset/big-ghosts-prove.md deleted file mode 100644 index 201a14917..000000000 --- a/.changeset/big-ghosts-prove.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/docs-template': patch ---- - -Fix issues around sidebar and titles diff --git a/.changeset/curly-emus-ring.md b/.changeset/curly-emus-ring.md deleted file mode 100644 index c69539971..000000000 --- a/.changeset/curly-emus-ring.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Honors users HMR settings diff --git a/.changeset/silent-rocks-relax.md b/.changeset/silent-rocks-relax.md deleted file mode 100644 index f32eb4f00..000000000 --- a/.changeset/silent-rocks-relax.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Prevent dev from locking up on empty selectors diff --git a/examples/docs/CHANGELOG.md b/examples/docs/CHANGELOG.md new file mode 100644 index 000000000..5eef28ec8 --- /dev/null +++ b/examples/docs/CHANGELOG.md @@ -0,0 +1,6 @@ +# @astrojs/docs-template + +## 0.0.2 +### Patch Changes + +- 1437b42: Fix issues around sidebar and titles diff --git a/examples/docs/package.json b/examples/docs/package.json index e952c7079..06c1b2474 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -1,13 +1,13 @@ { "name": "@astrojs/docs-template", - "version": "0.0.1", + "version": "0.0.2", "private": true, "scripts": { "start": "astro dev", "build": "astro build" }, "devDependencies": { - "astro": "^0.13.0" + "astro": "^0.13.6" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/snowpack/package.json b/examples/snowpack/package.json index df64b59c4..610bdc6f3 100644 --- a/examples/snowpack/package.json +++ b/examples/snowpack/package.json @@ -11,7 +11,7 @@ "lint": "prettier --check \"src/**/*.js\"" }, "dependencies": { - "astro": "^0.13.5", + "astro": "^0.13.6", "date-fns": "^2.19.0", "deepmerge": "^4.2.2", "docsearch.js": "^2.6.3", @@ -25,7 +25,7 @@ "@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4", "@contentful/rich-text-html-renderer": "^14.1.2", "@contentful/rich-text-types": "^14.1.2", - "astro": "^0.13.5", + "astro": "^0.13.6", "eleventy-plugin-nesting-toc": "^1.2.0", "luxon": "^1.25.0", "markdown-it": "^12.0.2", diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 101274e41..a38fd16b4 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,12 @@ # astro +## 0.13.6 + +### Patch Changes + +- 016833a: Honors users HMR settings +- 73a43d9: Prevent dev from locking up on empty selectors + ## 0.13.5 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 64a6dd265..8328b415a 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.13.5", + "version": "0.13.6", "author": "Skypack", "license": "MIT", "type": "module", diff --git a/www/package.json b/www/package.json index 49d95665c..efabc4385 100644 --- a/www/package.json +++ b/www/package.json @@ -7,6 +7,6 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.13.5" + "astro": "^0.13.6" } }