diff --git a/.changeset/purple-horses-shave.md b/.changeset/purple-horses-shave.md
index 59599e7..92dd68e 100644
--- a/.changeset/purple-horses-shave.md
+++ b/.changeset/purple-horses-shave.md
@@ -1,17 +1,17 @@
---
-"@bbob/parser": major
-"@bbob/cli": major
-"@bbob/core": major
-"@bbob/html": major
-"@bbob/plugin-helper": major
-"@bbob/preset": major
-"@bbob/preset-html5": major
-"@bbob/preset-react": major
-"@bbob/preset-vue": major
-"@bbob/react": major
-"@bbob/types": major
-"@bbob/vue2": major
-"@bbob/vue3": major
+"@bbob/parser": patch
+"@bbob/cli": patch
+"@bbob/core": patch
+"@bbob/html": patch
+"@bbob/plugin-helper": patch
+"@bbob/preset": patch
+"@bbob/preset-html5": patch
+"@bbob/preset-react": patch
+"@bbob/preset-vue": patch
+"@bbob/react": patch
+"@bbob/types": patch
+"@bbob/vue2": patch
+"@bbob/vue3": patch
---
Now `@bbob/parser` correctly parses nested tags like
diff --git a/.changeset/slimy-colts-drive.md b/.changeset/slimy-colts-drive.md
index 379f00e..61a5359 100644
--- a/.changeset/slimy-colts-drive.md
+++ b/.changeset/slimy-colts-drive.md
@@ -14,7 +14,16 @@
"@bbob/cli": patch
---
-fixes problem with context free tags
+Now `@bbob/parser` in context free tags mode correctly parses
-now code like `[code][codeButton]text[/codeButton][/code]`
-will be parsed correctly to `[codeButton]text[/codeButton]`
+code like
+```html
+[code][codeButton]text[/codeButton][/code]
+```
+
+will be parsed correctly to
+```html
+[codeButton]text[/codeButton]
+```
+
+Fixes #289