summaryrefslogtreecommitdiff
path: root/packages/markdown/component
diff options
context:
space:
mode:
Diffstat (limited to 'packages/markdown/component')
-rw-r--r--packages/markdown/component/CHANGELOG.md14
-rw-r--r--packages/markdown/component/package.json2
2 files changed, 9 insertions, 7 deletions
diff --git a/packages/markdown/component/CHANGELOG.md b/packages/markdown/component/CHANGELOG.md
index d803ed813..cd7b8fb9d 100644
--- a/packages/markdown/component/CHANGELOG.md
+++ b/packages/markdown/component/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/markdown-component
+## 1.0.1
+
+### Patch Changes
+
+- [#4208](https://github.com/withastro/astro/pull/4208) [`fe3b42398`](https://github.com/withastro/astro/commit/fe3b423982faa87c106e6a072bb14cb0a6678064) Thanks [@myakura](https://github.com/myakura)! - README update
+
## 1.0.0
### Major Changes
@@ -38,15 +44,11 @@
This change moves the Markdown component into its own package where it will be maintained separately. All that needs to change from a user's perspective is the import statement:
```astro
- ---
- import { Markdown } from 'astro/components';
- ---
+
```
Becomes:
```astro
- ---
- import Markdown from '@astrojs/markdown-component';
- ---
+
```
diff --git a/packages/markdown/component/package.json b/packages/markdown/component/package.json
index 7236f0b44..b7878d027 100644
--- a/packages/markdown/component/package.json
+++ b/packages/markdown/component/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/markdown-component",
- "version": "1.0.0",
+ "version": "1.0.1",
"type": "module",
"author": "withastro",
"license": "MIT",