Skip to content

Commit

Permalink
(cargo-release) version 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Aug 10, 2021
1 parent 20d8e27 commit 1231dbd
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ prodash-render-line = ["prodash/render-line"]
anyhow = "1.0.42"

gitoxide-core = { version = "^0.9.0", path = "gitoxide-core" }
git-features = { version = "^0.15.0", path = "git-features" }
git-features = { version = "^0.16.0", path = "git-features" }
git-repository = { version = "^0.6.0", path = "git-repository", default-features = false }

git-transport-for-configuration-only = { package = "git-transport", optional = true, version = "^0.9.0", path = "git-transport" }
Expand Down
2 changes: 1 addition & 1 deletion git-commitgraph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ doctest = false
serde1 = ["serde", "git-hash/serde1", "bstr/serde1"]

[dependencies]
git-features = { version = "^0.15.0", path = "../git-features", features = ["rustsha1"] }
git-features = { version = "^0.16.0", path = "../git-features", features = ["rustsha1"] }
git-hash = { version = "^0.4.0", path = "../git-hash" }

bstr = { version = "0.2.13", default-features = false, features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion git-features/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "git-features"
description = "A crate to integrate various capabilities using compile-time feature flags"
repository = "https://github.com/Byron/gitoxide"
version = "0.15.0"
version = "0.16.0"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
license = "MIT/Apache-2.0"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion git-odb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ required-features = []
all-features = true

[dependencies]
git-features = { version = "^0.15.0", path = "../git-features", features = ["rustsha1", "walkdir", "zlib"] }
git-features = { version = "^0.16.0", path = "../git-features", features = ["rustsha1", "walkdir", "zlib"] }
git-hash = { version = "^0.4.0", path = "../git-hash" }
git-object = { version = "^0.10.0", path = "../git-object" }
git-pack = { version = "^0.2", path = "../git-pack" }
Expand Down
2 changes: 1 addition & 1 deletion git-pack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ required-features = ["internal-testing-to-avoid-being-run-by-cargo-test-all"]
all-features = true

[dependencies]
git-features = { version = "^0.15.0", path = "../git-features", features = ["crc32", "rustsha1", "progress", "zlib"] }
git-features = { version = "^0.16.0", path = "../git-features", features = ["crc32", "rustsha1", "progress", "zlib"] }
git-hash = { version = "^0.4.0", path = "../git-hash" }
git-object = { version = "^0.10.0", path = "../git-object" }
git-traverse = { version = "^0.3", path = "../git-traverse" }
Expand Down
2 changes: 1 addition & 1 deletion git-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ path = "tests/async-protocol.rs"
required-features = ["async-client"]

[dependencies]
git-features = { version = "^0.15.0", path = "../git-features", features = ["progress"] }
git-features = { version = "^0.16.0", path = "../git-features", features = ["progress"] }
git-transport = { version = "^0.9.0", path = "../git-transport" }
git-hash = { version = "^0.4.0", path = "../git-hash" }

Expand Down
2 changes: 1 addition & 1 deletion git-ref/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ required-features = ["internal-testing-git-features-parallel"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
git-features = { version = "^0.15.0", path = "../git-features", features = ["walkdir"]}
git-features = { version = "^0.16.0", path = "../git-features", features = ["walkdir"]}
git-hash = { version = "^0.4.0", path = "../git-hash" }
git-object = { version = "^0.10.0", path = "../git-object" }
git-validate = { version = "^0.3.0", path = "../git-validate" }
Expand Down
2 changes: 1 addition & 1 deletion git-repository/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ git-url = { version = "0.3.0", path = "../git-url", optional = true }
git-traverse = { version = "^0.3", path = "../git-traverse", optional = true }
git-protocol = { version = "^0.8.0", path = "../git-protocol", optional = true }
git-diff = { version = "^0.4", path = "../git-diff", optional = true }
git-features = { version = "^0.15.0", path = "../git-features", features = ["progress"] }
git-features = { version = "^0.16.0", path = "../git-features", features = ["progress"] }

signal-hook = { version = "0.3.9", default-features = false }
quick-error = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion git-transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ required-features = ["async-client"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
git-features = { version = "^0.15.0", path = "../git-features" }
git-features = { version = "^0.16.0", path = "../git-features" }
git-url = { version = "^0.3.0", path = "../git-url" }
git-packetline = { version = "^0.6.0", path = "../git-packetline" }

Expand Down

0 comments on commit 1231dbd

Please sign in to comment.