Skip to content

Commit 1dc8a3e

Browse files
Bump version to 0.4.2
1 parent 8c55d08 commit 1dc8a3e

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55

66
## [Unreleased]
77

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+
815
## [0.4.1] - 2023-10-18
916
- Fixed incorrectly labeling `27f32` a float literals in docs.
1017
- 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.
9299
- Everything
93100

94101

95-
[Unreleased]: https://github.com/LukasKalbertodt/litrs/compare/v0.4.1...HEAD
102+
[Unreleased]: https://github.com/LukasKalbertodt/litrs/compare/v0.4.2...HEAD
103+
[0.4.2]: https://github.com/LukasKalbertodt/litrs/compare/v0.4.1...v0.4.2
96104
[0.4.1]: https://github.com/LukasKalbertodt/litrs/compare/v0.4.0...v0.4.1
97105
[0.4.0]: https://github.com/LukasKalbertodt/litrs/compare/v0.3.0...v0.4.0
98106
[0.3.0]: https://github.com/LukasKalbertodt/litrs/compare/v0.2.3...v0.3.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "litrs"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Lukas Kalbertodt <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.54"

0 commit comments

Comments
 (0)