diff --git a/changelog.md b/changelog.md
index d531a60..376f5fc 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,12 @@
+## 0.8.4 (2021-05-06)
+
+* perf: attr value as number ([3d08ec5](https://github.com/posthtml/posthtml-parser/commit/3d08ec5))
+
+
+
## 0.8.3 (2021-05-06)
+* 0.8.3 ([80e07ca](https://github.com/posthtml/posthtml-parser/commit/80e07ca))
* perf: attr value as boolean ([d143dbb](https://github.com/posthtml/posthtml-parser/commit/d143dbb))
diff --git a/package-lock.json b/package-lock.json
index 3c9be59..040db20 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "posthtml-parser",
- "version": "0.8.3",
+ "version": "0.8.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index f12046d..459dd10 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "posthtml-parser",
- "version": "0.8.3",
+ "version": "0.8.4",
"description": "Parse HTML/XML to PostHTMLTree",
"license": "MIT",
"repository": "posthtml/posthtml-parser",
diff --git a/types/index.d.ts b/types/index.d.ts
index b5beb1a..dba2073 100644
--- a/types/index.d.ts
+++ b/types/index.d.ts
@@ -15,7 +15,7 @@ export type Options = {
} & ParserOptions;
export type Tag = string | boolean;
-export type Attributes = Record;
+export type Attributes = Record;
export type Content = NodeText | Node[];
export type NodeText = string | number;