Skip to content

v0.4.2

Choose a tag to compare

@LukasKalbertodt LukasKalbertodt released this 25 Jul 16:34
· 19 commits to main since this release
1dc8a3e
  • Fix incorrect byte string value with non-ASCII \xHH byte string escapes
    • ByteStringLit::parse(r#"b"\xff""#).unwrap().value() would return [0xc3, 0xbf] instead of [0xff].
  • Remove CR LF normalization to align with spec
    • 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.
  • Fix incorrect error span for out-of-range Unicode escapes