From 416e8484b506497956fc2a43730b7514c17e275f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 12 Jun 2021 11:36:31 -0700 Subject: [PATCH] Version Packages (#402) Co-authored-by: github-actions[bot] --- .changeset/five-ducks-knock.md | 5 ----- examples/snowpack/package.json | 4 ++-- packages/astro/CHANGELOG.md | 6 ++++++ packages/astro/package.json | 2 +- www/package.json | 2 +- 5 files changed, 10 insertions(+), 9 deletions(-) delete mode 100644 .changeset/five-ducks-knock.md diff --git a/.changeset/five-ducks-knock.md b/.changeset/five-ducks-knock.md deleted file mode 100644 index f439c0daf..000000000 --- a/.changeset/five-ducks-knock.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Bugfix: createCollection() API can be used without fetchContent() diff --git a/examples/snowpack/package.json b/examples/snowpack/package.json index 0fe5c0e02..e3cfa1ab1 100644 --- a/examples/snowpack/package.json +++ b/examples/snowpack/package.json @@ -11,7 +11,7 @@ "lint": "prettier --check \"src/**/*.js\"" }, "dependencies": { - "astro": "^0.13.1", + "astro": "^0.13.2", "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.1", + "astro": "^0.13.2", "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 a10b453d8..feb544882 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,11 @@ # astro +## 0.13.2 + +### Patch Changes + +- c374a54: Bugfix: createCollection() API can be used without fetchContent() + ## 0.13.1 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index d63c60c82..657021489 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.13.1", + "version": "0.13.2", "author": "Skypack", "license": "MIT", "type": "module", diff --git a/www/package.json b/www/package.json index 0190f3f91..b56df7085 100644 --- a/www/package.json +++ b/www/package.json @@ -7,6 +7,6 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.13.1" + "astro": "^0.13.2" } }