diff --git a/.changeset/blue-goats-end.md b/.changeset/blue-goats-end.md deleted file mode 100644 index 7d3705a93..000000000 --- a/.changeset/blue-goats-end.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': minor ---- - -Removes mounting the project folder and adds a `src` root option diff --git a/.changeset/ninety-sheep-know.md b/.changeset/ninety-sheep-know.md deleted file mode 100644 index 6a520fc70..000000000 --- a/.changeset/ninety-sheep-know.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-astro': patch ---- - -fix small output bugs diff --git a/docs-www/package.json b/docs-www/package.json index cdc87b49b..155be2bc3 100644 --- a/docs-www/package.json +++ b/docs-www/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.13.0" + "astro": "^0.14.0" }, "snowpack": { "workspaceRoot": ".." diff --git a/examples/astro-markdown/package.json b/examples/astro-markdown/package.json index 534e8d2d4..9ee9c7c98 100644 --- a/examples/astro-markdown/package.json +++ b/examples/astro-markdown/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.13.0" + "astro": "^0.14.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/blog/package.json b/examples/blog/package.json index 597358826..7e82ad650 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.13.10" + "astro": "^0.14.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/docs/package.json b/examples/docs/package.json index 06c1b2474..e795246d5 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.13.6" + "astro": "^0.14.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/kitchen-sink/package.json b/examples/kitchen-sink/package.json index a1b87b5cd..7605ca8d8 100644 --- a/examples/kitchen-sink/package.json +++ b/examples/kitchen-sink/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.13.0" + "astro": "^0.14.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 6401d97d5..f310a5b34 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.13.0" + "astro": "^0.14.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/snowpack/package.json b/examples/snowpack/package.json index 9cfaffd66..1ebebee29 100644 --- a/examples/snowpack/package.json +++ b/examples/snowpack/package.json @@ -11,7 +11,7 @@ "lint": "prettier --check \"src/**/*.js\"" }, "dependencies": { - "astro": "^0.13.11", + "astro": "^0.14.0", "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.11", + "astro": "^0.14.0", "eleventy-plugin-nesting-toc": "^1.2.0", "luxon": "^1.25.0", "markdown-it": "^12.0.2", diff --git a/examples/starter/package.json b/examples/starter/package.json index a4a287b86..ede92528d 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.13.0" + "astro": "^0.14.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/tailwindcss/package.json b/examples/tailwindcss/package.json index a69ee5f47..710634c98 100644 --- a/examples/tailwindcss/package.json +++ b/examples/tailwindcss/package.json @@ -8,7 +8,7 @@ }, "devDependencies": { "tailwindcss": "^2.1.2", - "astro": "^0.13.0" + "astro": "^0.14.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index e4254a149..897f3a291 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,11 @@ # astro +## 0.14.0 + +### Minor Changes + +- 09b5779: Removes mounting the project folder and adds a `src` root option + ## 0.13.12 _Rolling back to 0.13.10 to prevent a regression in the dev server output._ diff --git a/packages/astro/package.json b/packages/astro/package.json index 7f23f5f70..df3f8541d 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.13.12", + "version": "0.14.0", "author": "Skypack", "license": "MIT", "type": "module", diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md index 9f12419ab..c08254140 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -1,5 +1,11 @@ # create-astro +## 0.3.4 + +### Patch Changes + +- b0e41ea: fix small output bugs + ## 0.3.3 ### Patch Changes diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index 694618b0d..8e6238df8 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -1,6 +1,6 @@ { "name": "create-astro", - "version": "0.3.3", + "version": "0.3.4", "type": "module", "repository": { "type": "git", diff --git a/tools/language-server/package.json b/tools/language-server/package.json index 7fec561d1..bdd5d4baf 100644 --- a/tools/language-server/package.json +++ b/tools/language-server/package.json @@ -28,7 +28,7 @@ "vscode-languageserver-textdocument": "^1.0.1" }, "devDependencies": { - "astro": "^0.13.0", + "astro": "^0.14.0", "astro-scripts": "0.0.1" } } diff --git a/www/package.json b/www/package.json index 74e6c374c..c7fdf4924 100644 --- a/www/package.json +++ b/www/package.json @@ -7,6 +7,6 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.13.11" + "astro": "^0.14.0" } }