Bump version to 0.11.0

zstd-sys 2.0.0
zstd-safe 5.0.0

Breaking changes:
- Dictionary-training operations have been moved behind a zdict_builder feature.
This commit is contained in:
Alexandre Bury 2022-03-09 15:48:49 -05:00
parent b4026bff46
commit 3a6c7fa76b
4 changed files with 6 additions and 6 deletions

View file

@ -7,7 +7,7 @@ categories = ["compression", "api-bindings"]
license = "MIT"
name = "zstd"
repository = "https://github.com/gyscos/zstd-rs"
version = "0.10.1+zstd.1.5.2"
version = "0.11.0+zstd.1.5.2"
exclude = ["assets/*.zst"]
readme = "Readme.md"
edition = "2018"
@ -19,7 +19,7 @@ features = ["experimental", "zstdmt", "zdict_builder", "doc-cfg"]
travis-ci = { repository = "gyscos/zstd-rs" }
[dependencies]
zstd-safe = { path = "zstd-safe", version = "=4.1.5", default-features = false, features = ["std"] }
zstd-safe = { path = "zstd-safe", version = "=5.0.0", default-features = false, features = ["std"] }
[dev-dependencies]
clap = "3.0"

View file

@ -24,7 +24,7 @@ $ cargo add zstd
# Cargo.toml
[dependencies]
zstd = "0.10"
zstd = "0.11"
```
## 2 - Usage

View file

@ -2,7 +2,7 @@
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
name = "zstd-safe"
build = "build.rs"
version = "4.1.5+zstd.1.5.2"
version = "5.0.0+zstd.1.5.2"
description = "Safe low-level bindings for the zstd compression library."
keywords = ["zstd", "zstandard", "compression"]
categories = ["api-bindings", "compression"]
@ -15,7 +15,7 @@ edition = "2018"
features = ["experimental", "arrays", "std", "zdict_builder", "doc-cfg"]
[dependencies]
zstd-sys = { path = "zstd-sys", version = "=1.6.4", default-features = false }
zstd-sys = { path = "zstd-sys", version = "=2.0.0", default-features = false }
libc = "0.2.21"
[features]

View file

@ -16,7 +16,7 @@ links = "zstd"
name = "zstd-sys"
readme = "Readme.md"
repository = "https://github.com/gyscos/zstd-rs"
version = "1.6.4+zstd.1.5.2"
version = "2.0.0+zstd.1.5.2"
edition = "2018"
# Use include instead of exclude, as a (temporary)