diff options
author | 2022-04-19 22:45:07 -0700 | |
---|---|---|
committer | 2022-04-19 22:45:07 -0700 | |
commit | fce98d5552dfc70b43c258dd057b651d1c481d84 (patch) | |
tree | 46906529129da49200855877ab16e8d53a7ff364 /packages | |
parent | 0c6bbee4c95b50e5bd43675296511fbb5b985014 (diff) | |
download | astro-@astrojs/deno@0.1.1.tar.gz astro-@astrojs/deno@0.1.1.tar.zst astro-@astrojs/deno@0.1.1.zip |
[ci] release (#3151)astro@1.0.0-beta.14@astrojs/vue@0.1.3@astrojs/vercel@0.1.3@astrojs/solid-js@0.1.2@astrojs/markdown-remark@0.9.2@astrojs/deno@0.1.1
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages')
-rw-r--r-- | packages/astro/CHANGELOG.md | 11 | ||||
-rw-r--r-- | packages/astro/package.json | 4 | ||||
-rw-r--r-- | packages/integrations/solid/CHANGELOG.md | 6 | ||||
-rw-r--r-- | packages/integrations/solid/package.json | 2 | ||||
-rw-r--r-- | packages/integrations/vue/CHANGELOG.md | 6 | ||||
-rw-r--r-- | packages/integrations/vue/package.json | 2 | ||||
-rw-r--r-- | packages/markdown/remark/CHANGELOG.md | 6 | ||||
-rw-r--r-- | packages/markdown/remark/package.json | 2 |
8 files changed, 34 insertions, 5 deletions
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 2864a44f7..ca488ba91 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,16 @@ # astro +## 1.0.0-beta.14 + +### Patch Changes + +- [#3152](https://github.com/withastro/astro/pull/3152) [`9ba1f4f8`](https://github.com/withastro/astro/commit/9ba1f4f8251155b69398a8af22d6ab8587b96120) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix JSX expression inconsistencies within markdown files + +* [#3141](https://github.com/withastro/astro/pull/3141) [`0247b542`](https://github.com/withastro/astro/commit/0247b54270e2befab91b9e65029ba929ac26381d) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Astro internals: remove all legacy build logic from the codebase, now that the legacy build flag has been removed + +* Updated dependencies [[`9ba1f4f8`](https://github.com/withastro/astro/commit/9ba1f4f8251155b69398a8af22d6ab8587b96120)]: + - @astrojs/markdown-remark@0.9.2 + ## 1.0.0-beta.13 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 769285d31..6a2824eb6 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.0.0-beta.13", + "version": "1.0.0-beta.14", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", @@ -77,7 +77,7 @@ "dependencies": { "@astrojs/compiler": "^0.14.1", "@astrojs/language-server": "^0.13.4", - "@astrojs/markdown-remark": "^0.9.1", + "@astrojs/markdown-remark": "^0.9.2", "@astrojs/prism": "0.4.1", "@astrojs/webapi": "^0.11.1", "@babel/core": "^7.17.9", diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md index 372b94ebb..4dc9866f8 100644 --- a/packages/integrations/solid/CHANGELOG.md +++ b/packages/integrations/solid/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/solid-js +## 0.1.2 + +### Patch Changes + +- [#3140](https://github.com/withastro/astro/pull/3140) [`5e28b790`](https://github.com/withastro/astro/commit/5e28b790950bd29f4f7067082ad13b759594509f) Thanks [@hippotastic](https://github.com/hippotastic)! - Fix location of SolidJS pre-hydration code + ## 0.1.1 ### Patch Changes diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json index 58b088ab1..53733bcfd 100644 --- a/packages/integrations/solid/package.json +++ b/packages/integrations/solid/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/solid-js", - "version": "0.1.1", + "version": "0.1.2", "description": "Use Solid components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md index bfe28d3bf..3e2f0612f 100644 --- a/packages/integrations/vue/CHANGELOG.md +++ b/packages/integrations/vue/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/vue +## 0.1.3 + +### Patch Changes + +- [`0c6bbee4`](https://github.com/withastro/astro/commit/0c6bbee4c95b50e5bd43675296511fbb5b985014) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Republishing. No changes from v0.1.2. + ## 0.1.2 ### Patch Changes diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index 2f38e0170..eeea84265 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/vue", - "version": "0.1.2", + "version": "0.1.3", "description": "Use Vue components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md index 92a37ce9d..a63cf4dcf 100644 --- a/packages/markdown/remark/CHANGELOG.md +++ b/packages/markdown/remark/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/markdown-remark +## 0.9.2 + +### Patch Changes + +- [#3152](https://github.com/withastro/astro/pull/3152) [`9ba1f4f8`](https://github.com/withastro/astro/commit/9ba1f4f8251155b69398a8af22d6ab8587b96120) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix JSX expression inconsistencies within markdown files + ## 0.9.1 ### Patch Changes diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json index 0327a7929..42289b1c0 100644 --- a/packages/markdown/remark/package.json +++ b/packages/markdown/remark/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/markdown-remark", - "version": "0.9.1", + "version": "0.9.2", "type": "module", "author": "withastro", "license": "MIT", |