diff options
Diffstat (limited to 'packages/markdown/component/CHANGELOG.md')
-rw-r--r-- | packages/markdown/component/CHANGELOG.md | 14 |
1 files changed, 8 insertions, 6 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'; - --- + ``` |