Skip to content

Commit 642020e

Browse files
committed
bump version to 0.12
1 parent 5295b16 commit 642020e

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1+
0.12.0 (2025-11-11)
2+
==================
3+
- Fix integer overflows when decoding large payloads [#192](https://github.com/PSeitz/lz4_flex/pull/192) (thanks @teh-cmc)
4+
```
5+
This fixes an u32 integer overflow when decoding large payloads in the block format.
6+
Note: The block format is not suitable for such large payloads, since it
7+
keeps everything in memory. Consider using the frame format for large data.
8+
9+
This change also removes a unsafe fast-path for write_integer to simplify the code.
10+
The performance impact is on incompressible data, which is already fast enough.
11+
```
12+
113
0.11.5 (2025-06-19)
214
==================
3-
- Fix incorrect rust-version field name in Cargo.toml [#180](https://github.com/PSeitz/lz4_flex/pull/187)
15+
- Fix incorrect rust-version field name in Cargo.toml [#187](https://github.com/PSeitz/lz4_flex/pull/187)
416

517
0.11.4 (2025-06-14)
618
==================

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ all-features = true
1717
rustdoc-args = ["--cfg", "docsrs"]
1818

1919
[dev-dependencies]
20-
lzzzz = "1.0.4"
20+
lzzzz = "2.0.0"
2121
lz4-compress = "0.1.1"
2222
more-asserts = "0.3.1"
2323
snap = "1.1.0"

_typos.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
[files]
22
extend-exclude = ["benches/*.txt", "benches/*.json", "benches/*.xml", "tests/tests.rs"]
3+
4+
[default.extend-words]
5+
# Don't correct the surname "Teh"
6+
teh = "teh"

0 commit comments

Comments
 (0)