Skip to content

Commit

Permalink
Release git-diff v0.7.0, git-odb v0.19.0, git-pack v0.7.0, git-traver…
Browse files Browse the repository at this point in the history
…se v0.6.0
  • Loading branch information
Byron committed Aug 12, 2021
1 parent bcc2883 commit c67291f
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 22 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions git-diff/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-diff"
version = "0.6.0"
version = "0.7.0"
repository = "https://github.com/Byron/gitoxide"
license = "MIT/Apache-2.0"
description = "Calculate differences between various git objects"
Expand All @@ -19,6 +19,6 @@ git-object = { version ="0.12.0", path = "../git-object" }
quick-error = "2.0.0"

[dev-dependencies]
git-odb = { version = "^0.18", path = "../git-odb" }
git-traverse = { version = "^0.5", path = "../git-traverse" }
git-odb = { version ="0.19.0", path = "../git-odb" }
git-traverse = { version ="0.6.0", path = "../git-traverse" }
git-testtools = { path = "../tests/tools" }
4 changes: 2 additions & 2 deletions git-odb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-odb"
version = "0.18.0"
version = "0.19.0"
repository = "https://github.com/Byron/gitoxide"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
license = "MIT/Apache-2.0"
Expand Down Expand Up @@ -31,7 +31,7 @@ all-features = true
git-features = { version = "^0.16.0", path = "../git-features", features = ["rustsha1", "walkdir", "zlib"] }
git-hash = { version = "^0.5.0", path = "../git-hash" }
git-object = { version ="0.12.0", path = "../git-object" }
git-pack = { version = "^0.6", path = "../git-pack" }
git-pack = { version ="0.7.0", path = "../git-pack" }

btoi = "0.4.2"
tempfile = "3.1.0"
Expand Down
8 changes: 4 additions & 4 deletions git-pack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-pack"
version = "0.6.0"
version = "0.7.0"
repository = "https://github.com/Byron/gitoxide"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
license = "MIT/Apache-2.0"
Expand Down Expand Up @@ -35,8 +35,8 @@ all-features = true
git-features = { version = "^0.16.0", path = "../git-features", features = ["crc32", "rustsha1", "progress", "zlib"] }
git-hash = { version = "^0.5.0", path = "../git-hash" }
git-object = { version ="0.12.0", path = "../git-object" }
git-traverse = { version = "^0.5", path = "../git-traverse" }
git-diff = { version = "^0.6", path = "../git-diff" }
git-traverse = { version ="0.6.0", path = "../git-traverse" }
git-diff = { version ="0.7.0", path = "../git-diff" }
git-tempfile = { version = "^0.6.0", path = "../git-tempfile" }

smallvec = "1.3.0"
Expand All @@ -54,7 +54,7 @@ dashmap = "4.0.2"

[dev-dependencies]
git-testtools = { version = "^0.4", path = "../tests/tools"}
git-odb = { version = "^0.18", path = "../git-odb" }
git-odb = { version ="0.19.0", path = "../git-odb" }
tempfile = "3.1.0"
bstr = { version = "0.2.13", default-features = false, features = ["std"] }
hex = "0.4.2"
Expand Down
2 changes: 1 addition & 1 deletion git-packetline/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ pin-project-lite = { version = "0.2.6", optional = true }

[dev-dependencies]
async-std = { version = "1.9.0", features = ["attributes"] }
git-odb = { version = "^0.18.0", path = "../git-odb" }
git-odb = { version ="0.19.0", path = "../git-odb" }
maybe-async = "0.2.6"
2 changes: 1 addition & 1 deletion git-ref/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ filebuffer = "0.4.0"

[dev-dependencies]
git-testtools = { version = "^0.4", path = "../tests/tools" }
git-odb = { version = "^0.18", path = "../git-odb" }
git-odb = { version ="0.19.0", path = "../git-odb" }
tempfile = "3.2.0"
8 changes: 4 additions & 4 deletions git-repository/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ one-stop-shop = [
git-ref = { version = "0.5.0", path = "../git-ref" }
git-tempfile = { version = "^0.6.0", path = "../git-tempfile" }

git-odb = { version = "^0.18", path = "../git-odb" }
git-odb = { version ="0.19.0", path = "../git-odb" }
git-hash = { version = "^0.5.0", path = "../git-hash" }
git-object = { version ="0.12.0", path = "../git-object" }
git-actor = { version ="0.3.1", path = "../git-actor" }
git-pack = { version = "^0.6", path = "../git-pack" }
git-pack = { version ="0.7.0", path = "../git-pack" }

git-url = { version = "0.3.0", path = "../git-url", optional = true }
git-traverse = { version = "^0.5", path = "../git-traverse", optional = true }
git-traverse = { version ="0.6.0", path = "../git-traverse", optional = true }
git-protocol = { version = "^0.8.0", path = "../git-protocol", optional = true }
git-diff = { version = "^0.6", path = "../git-diff", optional = true }
git-diff = { version ="0.7.0", path = "../git-diff", optional = true }
git-features = { version = "^0.16.0", path = "../git-features", features = ["progress"] }

signal-hook = { version = "0.3.9", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion git-transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ base64 = { version = "0.13.0", optional = true }
[dev-dependencies]
async-std = { version = "1.9.0", features = ["attributes"] }
maybe-async = "0.2.6"
git-pack = { version = "^0.6", path = "../git-pack" }
git-pack = { version ="0.7.0", path = "../git-pack" }
blocking = "1.0.2"
4 changes: 2 additions & 2 deletions git-traverse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-traverse"
version = "0.5.0"
version = "0.6.0"
repository = "https://github.com/Byron/gitoxide"
license = "MIT/Apache-2.0"
description = "A WIP crate of the gitoxide project"
Expand All @@ -20,4 +20,4 @@ quick-error = "2.0.0"

[dev-dependencies]
git-testtools = { path = "../tests/tools" }
git-odb = { version = "^0.18", path = "../git-odb" }
git-odb = { version ="0.19.0", path = "../git-odb" }

0 comments on commit c67291f

Please sign in to comment.