Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump versions for l4z 1.10 #47

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

1.26.0:
* Update to lz4 1.10.0

1.25.0:
* Add content_size setting to Lz4FrameInfo
* Add LZ4_setStreamDecode
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lz4"
license = "MIT"
version = "1.25.0"
version = "1.26.0"
readme = "README.md"
authors = [ "Jens Heyens <jens.heyens@ewetel.net>", "Artem V. Navrotskiy <bozaro@buzzsoft.ru>", "Patrick Marks <pmarks@gmail.com>"]
description = "Rust LZ4 bindings library."
Expand All @@ -16,7 +16,7 @@ doc = false

[dependencies]
libc = "0.2"
lz4-sys = { path = "lz4-sys", version = "1.9.5" }
lz4-sys = { path = "lz4-sys", version = "1.10.0" }

[dev-dependencies]
rand = ">=0.7, <=0.8"
Expand Down
3 changes: 3 additions & 0 deletions lz4-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.10.0:
* No change to lz4-sys crate

1.9.5:
* expand Lz4FrameInfo struct

Expand Down
2 changes: 1 addition & 1 deletion lz4-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "lz4-sys"
license = "MIT"
links = "lz4"
version = "1.9.5"
version = "1.10.0"
authors = [ "Jens Heyens <jens.heyens@ewetel.net>", "Artem V. Navrotskiy <bozaro@buzzsoft.ru>", "Patrick Marks <pmarks@gmail.com>"]
build = "build.rs"
description = "Rust LZ4 sys package."
Expand Down
Loading