Skip to content

Commit cc09800

Browse files
committed
release 0.11.4
closes #184 fix nightly build
1 parent a889e29 commit cc09800

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.11.4 (2025-06-14)
2+
==================
3+
- Upgrade to twox-hash 2.0[#175](https://github.com/PSeitz/lz4_flex/pull/175)
4+
- Better `no_std` compatibility [#180](https://github.com/PSeitz/lz4_flex/pull/180)
5+
16
0.11.3 (2024-03-30)
27
==================
38
- Fix support for `--deny=unsafe_code` compilation [#152](https://github.com/PSeitz/lz4_flex/pull/152)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://github.com/pseitz/lz4_flex"
88
repository = "https://github.com/pseitz/lz4_flex"
99
readme = "README.md"
1010
license = "MIT"
11-
version = "0.11.3"
11+
version = "0.11.4"
1212
include = ["src/*.rs", "src/frame/**/*", "src/block/**/*", "README.md", "LICENSE"]
1313
rust_version = "1.81"
1414

src/sink.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pub fn vec_sink_for_compression(
1515
offset: usize,
1616
pos: usize,
1717
required_capacity: usize,
18-
) -> SliceSink {
18+
) -> SliceSink<'_> {
1919
{
2020
vec.resize(offset + required_capacity, 0);
2121
SliceSink::new(&mut vec[offset..], pos)
@@ -34,7 +34,7 @@ pub fn vec_sink_for_decompression(
3434
offset: usize,
3535
pos: usize,
3636
required_capacity: usize,
37-
) -> SliceSink {
37+
) -> SliceSink<'_> {
3838
{
3939
vec.resize(offset + required_capacity, 0);
4040
SliceSink::new(&mut vec[offset..], pos)

0 commit comments

Comments
 (0)