diff --git a/.changeset/light-ligers-rhyme.md b/.changeset/light-ligers-rhyme.md
deleted file mode 100644
index 7b55a9761..000000000
--- a/.changeset/light-ligers-rhyme.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@astrojs/compiler": patch
----
-
-Allow `data-astro-reload` to take a value
diff --git a/packages/compiler/CHANGELOG.md b/packages/compiler/CHANGELOG.md
index d2703fbfd..f4f767163 100644
--- a/packages/compiler/CHANGELOG.md
+++ b/packages/compiler/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/compiler
+## 2.8.1
+
+### Patch Changes
+
+- 0bb2746: Allow `data-astro-reload` to take a value
+
## 2.8.0
### Minor Changes
@@ -139,8 +145,15 @@
Results in:
```html
-
-
hello world
+
+ hello world
```
@@ -631,8 +644,11 @@
- c770e7b: The compiler will now return `diagnostics` and unique error codes to be handled by the consumer. For example:
```js
- import type { DiagnosticSeverity, DiagnosticCode } from '@astrojs/compiler/types';
- import { transform } from '@astrojs/compiler';
+ import type {
+ DiagnosticSeverity,
+ DiagnosticCode,
+ } from "@astrojs/compiler/types";
+ import { transform } from "@astrojs/compiler";
async function run() {
const { diagnostics } = await transform(file, opts);
diff --git a/packages/compiler/package.json b/packages/compiler/package.json
index 652d44581..fea5017b7 100644
--- a/packages/compiler/package.json
+++ b/packages/compiler/package.json
@@ -5,7 +5,7 @@
"type": "module",
"bugs": "https://github.com/withastro/compiler/issues",
"homepage": "https://astro.build",
- "version": "2.8.0",
+ "version": "2.8.1",
"scripts": {
"build": "tsup"
},