Skip to content

Commit

Permalink
Bump version to 0.11.0
Browse files Browse the repository at this point in the history
zstd-sys 2.0.0
zstd-safe 5.0.0

Breaking changes:
- Dictionary-training operations have been moved behind a zdict_builder feature.
  • Loading branch information
gyscos committed Mar 9, 2022
1 parent b4026bf commit 3a6c7fa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Expand Up @@ -24,7 +24,7 @@ $ cargo add zstd
# Cargo.toml

[dependencies]
zstd = "0.10"
zstd = "0.11"
```

## 2 - Usage
Expand Down
4 changes: 2 additions & 2 deletions zstd-safe/Cargo.toml
Expand Up @@ -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"]
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion zstd-safe/zstd-sys/Cargo.toml
Expand Up @@ -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)
Expand Down

0 comments on commit 3a6c7fa

Please sign in to comment.