Skip to content

Commit

Permalink
Update zstd to v1.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
gyscos committed Oct 19, 2018
1 parent 5976696 commit 73f7c1c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ categories = ["compression", "api-bindings"]
license = "MIT"
name = "zstd"
repository = "https://github.com/gyscos/zstd-rs"
version = "0.4.20+zstd.1.3.6"
version ="0.4.21+zstd.1.3.7"
exclude = ["assets/**"]
readme = "Readme.md"

Expand Down
2 changes: 1 addition & 1 deletion zstd-safe/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Alexandre Bury <[email protected]>"]
name = "zstd-safe"
version = "1.4.5+zstd.1.3.6"
version ="1.4.6+zstd.1.3.7"
description = "Safe low-level bindings for the zstd compression library."
keywords = ["zstd", "zstandard", "compression"]
categories = ["api-bindings", "compression"]
Expand Down
2 changes: 1 addition & 1 deletion zstd-safe/zstd-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ links = "zstd"
name = "zstd-sys"
readme = "Readme.md"
repository = "https://github.com/gyscos/zstd-rs"
version = "1.4.5+zstd.1.3.6"
version ="1.4.6+zstd.1.3.7"

[build-dependencies]
blob = "0.2.0"
Expand Down
4 changes: 2 additions & 2 deletions zstd-safe/zstd-sys/src/bindings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

pub const ZSTD_VERSION_MAJOR: u32 = 1;
pub const ZSTD_VERSION_MINOR: u32 = 3;
pub const ZSTD_VERSION_RELEASE: u32 = 6;
pub const ZSTD_VERSION_NUMBER: u32 = 10306;
pub const ZSTD_VERSION_RELEASE: u32 = 7;
pub const ZSTD_VERSION_NUMBER: u32 = 10307;
pub const ZSTD_CLEVEL_DEFAULT: u32 = 3;
pub const ZSTD_CONTENTSIZE_UNKNOWN: i32 = -1;
pub const ZSTD_CONTENTSIZE_ERROR: i32 = -2;
Expand Down

0 comments on commit 73f7c1c

Please sign in to comment.