diff options
author | 2023-01-18 15:43:04 +0100 | |
---|---|---|
committer | 2023-01-18 09:43:04 -0500 | |
commit | dc2496f702e3b1b575a74c65db93f484ef95d097 (patch) | |
tree | 705b740db159158eb9bc38fc6771f056e43b191f | |
parent | 7d72aeeae8c867af2ae6c018611e39c184f50619 (diff) | |
download | astro-dc2496f702e3b1b575a74c65db93f484ef95d097.tar.gz astro-dc2496f702e3b1b575a74c65db93f484ef95d097.tar.zst astro-dc2496f702e3b1b575a74c65db93f484ef95d097.zip |
chore: Fix image and MDX integrations version's number to get out of 1.0 (#5892)
* chore: Fix image integration version's number to get out of 1.0
* chore: Same thing for MDX integration
-rw-r--r-- | packages/integrations/image/package.json | 2 | ||||
-rw-r--r-- | packages/integrations/mdx/package.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json index 798bdff0a..e2bdf0167 100644 --- a/packages/integrations/image/package.json +++ b/packages/integrations/image/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/image", "description": "Load and transform images in your Astro site.", - "version": "1.0.0-beta.2", + "version": "0.12.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index 0d20d8743..49339368c 100644 --- a/packages/integrations/mdx/package.json +++ b/packages/integrations/mdx/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/mdx", "description": "Use MDX within Astro", - "version": "1.0.0-beta.2", + "version": "0.14.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", |