diff --git a/.changeset/strong-deers-complain.md b/.changeset/strong-deers-complain.md deleted file mode 100644 index 609ce3c5..00000000 --- a/.changeset/strong-deers-complain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"htmljs-parser": patch ---- - -Fixes a regression where the parsed text state (used by eg `script`, `style`) was not properly entering back into text for the closing quote on the string. diff --git a/.changeset/tall-moons-enjoy.md b/.changeset/tall-moons-enjoy.md deleted file mode 100644 index 040019d6..00000000 --- a/.changeset/tall-moons-enjoy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"htmljs-parser": patch ---- - -Always consume next character of expression if terminator was preceded by an operator. diff --git a/CHANGELOG.md b/CHANGELOG.md index 4140f6de..1c6a4a63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # htmljs-parser +## 5.4.3 + +### Patch Changes + +- [#161](https://github.com/marko-js/htmljs-parser/pull/161) [`be73442`](https://github.com/marko-js/htmljs-parser/commit/be734429cc67b87a21a6a0c8880da64a3475d03e) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fixes a regression where the parsed text state (used by eg `script`, `style`) was not properly entering back into text for the closing quote on the string. + +- [#162](https://github.com/marko-js/htmljs-parser/pull/162) [`085451c`](https://github.com/marko-js/htmljs-parser/commit/085451cc574b56ce6689f2168a9eed1bd0f0b0e6) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Always consume next character of expression if terminator was preceded by an operator. + ## 5.4.2 ### Patch Changes diff --git a/package-lock.json b/package-lock.json index 2e2c3102..07d6b876 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "htmljs-parser", - "version": "5.4.2", + "version": "5.4.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "htmljs-parser", - "version": "5.4.2", + "version": "5.4.3", "license": "MIT", "devDependencies": { "@changesets/changelog-github": "^0.4.7", diff --git a/package.json b/package.json index 7da726af..4f0c41da 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.2", + "version": "5.4.3", "devDependencies": { "@changesets/changelog-github": "^0.4.7", "@changesets/cli": "^2.25.2",