You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
6
6
## [Unreleased]
7
7
8
+
## [0.4.2] - 2025-07-25
9
+
- Fix incorrect byte string value with non-ASCII `\xHH` byte string escapes
10
+
-`ByteStringLit::parse(r#"b"\xff""#).unwrap().value()` would return `[0xc3, 0xbf]` instead of `[0xff]`.
11
+
- Remove CR LF normalization to align with spec
12
+
- This is technically a breaking change, but released with a minor version bump as it just aligns with the specification. It is extremely unlikely to affect any real world use case.
13
+
- Fix incorrect error span for out-of-range Unicode escapes
14
+
8
15
## [0.4.1] - 2023-10-18
9
16
- Fixed incorrectly labeling `27f32` a float literals in docs.
10
17
- Added hint to integer literal docs about parsing as `u128`.
@@ -92,7 +99,8 @@ All notable changes to this project will be documented in this file.
0 commit comments