diff --git a/.changeset/fix-unquoted-attribute-values.md b/.changeset/fix-unquoted-attribute-values.md
deleted file mode 100644
index 828bd7b..0000000
--- a/.changeset/fix-unquoted-attribute-values.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-"@astrojs/compiler-binding": patch
-"@astrojs/compiler-rs": patch
----
-
-Fixes `Unexpected token` error when an HTML attribute has an unquoted value such as a number (``) or contains characters like `-` or `#`.
diff --git a/.changeset/template-depth-tracking.md b/.changeset/template-depth-tracking.md
deleted file mode 100644
index 2e867e6..0000000
--- a/.changeset/template-depth-tracking.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-"@astrojs/compiler-binding": minor
-"@astrojs/compiler-rs": minor
----
-
-Emit `templateEnter` / `templateExit` instructions when printing `` elements for https://github.com/withastro/astro/pull/15980
diff --git a/crates/astro_napi/CHANGELOG.md b/crates/astro_napi/CHANGELOG.md
index e6b5fb5..41a2828 100644
--- a/crates/astro_napi/CHANGELOG.md
+++ b/crates/astro_napi/CHANGELOG.md
@@ -1,5 +1,15 @@
# @astrojs/compiler-binding
+## 0.2.0
+
+### Minor Changes
+
+- 0726e00: Emit `templateEnter` / `templateExit` instructions when printing `` elements for https://github.com/withastro/astro/pull/15980
+
+### Patch Changes
+
+- 0bddba4: Fixes `Unexpected token` error when an HTML attribute has an unquoted value such as a number (``) or contains characters like `-` or `#`.
+
## 0.1.10
## 0.1.9
diff --git a/crates/astro_napi/package.json b/crates/astro_napi/package.json
index 73a76b4..b7db531 100644
--- a/crates/astro_napi/package.json
+++ b/crates/astro_napi/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/compiler-binding",
- "version": "0.1.10",
+ "version": "0.2.0",
"description": "Astro Compiler",
"keywords": [
"astro",
diff --git a/packages/compiler/CHANGELOG.md b/packages/compiler/CHANGELOG.md
index 1a34c3a..faf7cec 100644
--- a/packages/compiler/CHANGELOG.md
+++ b/packages/compiler/CHANGELOG.md
@@ -1,5 +1,18 @@
# @astrojs/compiler-rs
+## 0.2.0
+
+### Minor Changes
+
+- 0726e00: Emit `templateEnter` / `templateExit` instructions when printing `` elements for https://github.com/withastro/astro/pull/15980
+
+### Patch Changes
+
+- 0bddba4: Fixes `Unexpected token` error when an HTML attribute has an unquoted value such as a number (``) or contains characters like `-` or `#`.
+- Updated dependencies [0bddba4]
+- Updated dependencies [0726e00]
+ - @astrojs/compiler-binding@0.2.0
+
## 0.1.10
### Patch Changes
diff --git a/packages/compiler/package.json b/packages/compiler/package.json
index c2df9a6..6b84f29 100644
--- a/packages/compiler/package.json
+++ b/packages/compiler/package.json
@@ -5,7 +5,7 @@
"type": "module",
"bugs": "https://github.com/withastro/compiler-rs/issues",
"homepage": "https://astro.build",
- "version": "0.1.10",
+ "version": "0.2.0",
"scripts": {
"build": "tsup"
},