diff --git a/.changeset/stale-impalas-visit.md b/.changeset/stale-impalas-visit.md deleted file mode 100644 index 06c542de..00000000 --- a/.changeset/stale-impalas-visit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"htmljs-parser": patch ---- - -Fix regression where the parser would continue unary keyword expressions even if the keyword was inside a word boundary. Eg `
` would cause the parser to see the expression as `thing_` and `new x`. diff --git a/CHANGELOG.md b/CHANGELOG.md index 2092da4c..6a8a11a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # htmljs-parser +## 5.4.1 + +### Patch Changes + +- [#156](https://github.com/marko-js/htmljs-parser/pull/156) [`72b3379`](https://github.com/marko-js/htmljs-parser/commit/72b3379fb37d2c4e76976bcb4bb0312b376068a3) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix regression where the parser would continue unary keyword expressions even if the keyword was inside a word boundary. Eg `
` would cause the parser to see the expression as `thing_` and `new x`. + ## 5.4.0 ### Minor Changes diff --git a/package-lock.json b/package-lock.json index 49231352..fb7d1470 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "htmljs-parser", - "version": "5.4.0", + "version": "5.4.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "htmljs-parser", - "version": "5.4.0", + "version": "5.4.1", "license": "MIT", "devDependencies": { "@changesets/changelog-github": "^0.4.7", diff --git a/package.json b/package.json index c7ba687a..6161f853 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "htmljs-parser", "description": "An HTML parser recognizes content and string placeholders and allows JavaScript expressions as attribute values", - "version": "5.4.0", + "version": "5.4.1", "devDependencies": { "@changesets/changelog-github": "^0.4.7", "@changesets/cli": "^2.25.2",