diff --git a/.changeset/strong-news-develop.md b/.changeset/strong-news-develop.md
deleted file mode 100644
index d14afcb0..00000000
--- a/.changeset/strong-news-develop.md
+++ /dev/null
@@ -1,81 +0,0 @@
----
-"@r4ai/remark-callout": minor
----
-
-## Breaking Changes
-
-In v0.2.0, option to specify a HTML tag for the Body portion of the Callout is added.
-
-For example, In v0.1.x,
-
-```md
-> [!note] title here
-> body here
-```
-
-would be rendered as follows:
-
-```html
-
-
title here
-
body here
-
-```
-
-however, in v0.2.0, the previous markdown is rendered as follows
-
-```html
-
-```
-
-This change is a breaking change because it changes the structure of the rendered HTML. If you have any custom CSS or JavaScript that relies on the structure of the rendered HTML, you will need to update it to account for this change.
-
-Now you can specify a HTML tag and HTML attributes for the Body portion of the Callout by using the `body` option.
-
-Example:
-
-```ts
-import remarkParse from "remark-parse";
-import { unified } from "unified";
-import remarkCallout from "../src/index";
-import remarkRehype from "remark-rehype";
-import rehypeStringify from "rehype-stringify";
-
-const md = `
- > [!note] title here
- > body here
-`;
-
-const html = unified()
- .use(remarkParse)
- .use(remarkCallout, {
- body: {
- tagName: "callout-body",
- properties: {
- className: "callout-body",
- },
- },
- })
- .use(remarkRehype)
- .use(rehypeStringify)
- .processSync(md)
- .toString();
-
-console.log(html);
-```
-
-yields
-
-```html
-
-
title here
-
- body here
-
-
-```
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 42edb102..2f5be62a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,87 @@
# @r4ai/remark-callout
+## 0.2.0
+
+### Minor Changes
+
+- e7f21b3: ## Breaking Changes
+
+ In v0.2.0, option to specify a HTML tag for the Body portion of the Callout is added.
+
+ For example, In v0.1.x,
+
+ ```md
+ > [!note] title here
+ > body here
+ ```
+
+ would be rendered as follows:
+
+ ```html
+
+
title here
+
body here
+
+ ```
+
+ however, in v0.2.0, the previous markdown is rendered as follows
+
+ ```html
+
+ ```
+
+ This change is a breaking change because it changes the structure of the rendered HTML. If you have any custom CSS or JavaScript that relies on the structure of the rendered HTML, you will need to update it to account for this change.
+
+ Now you can specify a HTML tag and HTML attributes for the Body portion of the Callout by using the `body` option.
+
+ Example:
+
+ ```ts
+ import remarkParse from "remark-parse";
+ import { unified } from "unified";
+ import remarkCallout from "../src/index";
+ import remarkRehype from "remark-rehype";
+ import rehypeStringify from "rehype-stringify";
+
+ const md = `
+ > [!note] title here
+ > body here
+ `;
+
+ const html = unified()
+ .use(remarkParse)
+ .use(remarkCallout, {
+ body: {
+ tagName: "callout-body",
+ properties: {
+ className: "callout-body",
+ },
+ },
+ })
+ .use(remarkRehype)
+ .use(rehypeStringify)
+ .processSync(md)
+ .toString();
+
+ console.log(html);
+ ```
+
+ yields
+
+ ```html
+
+
title here
+
+ body here
+
+
+ ```
+
## 0.1.2
### Patch Changes
diff --git a/package.json b/package.json
index a75ca8be..85f0325d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@r4ai/remark-callout",
- "version": "0.1.2",
+ "version": "0.2.0",
"description": "A remark plugin to add obsidian style callouts to markdown",
"author": "rai",
"keywords": [