Skip to content

Commit 866f86f

Browse files
committed
(cargo-release) version 0.4.0
1 parent aea6cc5 commit 866f86f

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

experiments/diffing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ anyhow = "1"
1212
git-odb = { version = "^0.16", path = "../../git-odb" }
1313
git-pack = { version = "^0.2", path = "../../git-pack", features = ["pack-cache-lru-static", "pack-cache-lru-dynamic"] }
1414
git-traverse = { version = "^0.3", path = "../../git-traverse" }
15-
git-hash = { version = "^0.3", path = "../../git-hash" }
15+
git-hash = { version = "^0.4", path = "../../git-hash" }
1616
git-object = { version = "^0.10", path = "../../git-object" }
1717
git-diff = { version = "^0.4", path = "../../git-diff" }
1818
git2 = "0.13"

experiments/object-access/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ publish = false
1111
anyhow = "1"
1212
git-odb = { version = "^0.16", path = "../../git-odb" }
1313
git-pack = { version = "^0.2", path = "../../git-pack", features = ["pack-cache-lru-static", "pack-cache-lru-dynamic"] }
14-
git-hash = { version = "^0.3", path = "../../git-hash" }
14+
git-hash = { version = "^0.4", path = "../../git-hash" }
1515
git2 = "0.13"
1616
rayon = "1.5.0"

git-commitgraph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ serde1 = ["serde", "git-hash/serde1"]
1717

1818
[dependencies]
1919
git-features = { version = "^0.15.0", path = "../git-features", features = ["sha1"] }
20-
git-hash = { version = "^0.3.0", path = "../git-hash" }
20+
git-hash = { version = "^0.4.0", path = "../git-hash" }
2121

2222
bstr = { version = "0.2.13", default-features = false, features = ["std"] }
2323
byteorder = "1.2.3"

git-diff/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ doctest = false
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
git-hash = { version = "^0.3.0", path = "../git-hash" }
17+
git-hash = { version = "^0.4.0", path = "../git-hash" }
1818
git-object = { version = "^0.10", path = "../git-object" }
1919
quick-error = "2.0.0"
2020

git-features/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ path = "tests/pipe.rs"
4949
required-features = ["io-pipe"]
5050

5151
[dependencies]
52-
git-hash = { version = "^0.3.0", path = "../git-hash" }
52+
git-hash = { version = "^0.4.0", path = "../git-hash" }
5353

5454
# 'parallel' feature
5555
crossbeam-utils = { version = "0.8.0", optional = true }

git-hash/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-hash"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Borrowed and owned git hash digests used to identify git objects"
55
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
66
repository = "https://github.com/Byron/gitoxide"

git-object/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ serde1 = ["serde", "bstr/serde1", "smallvec/serde", "git-hash/serde1"]
1818
all-features = true
1919

2020
[dependencies]
21-
git-hash = { version = "^0.3.0", path = "../git-hash" }
21+
git-hash = { version = "^0.4.0", path = "../git-hash" }
2222
git-validate = { version = "^0.2.0", path = "../git-validate" }
2323

2424
quick-error = "2.0.0"

git-odb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ all-features = true
2929

3030
[dependencies]
3131
git-features = { version = "^0.15.0", path = "../git-features", features = ["sha1", "walkdir", "zlib"] }
32-
git-hash = { version = "^0.3.0", path = "../git-hash" }
32+
git-hash = { version = "^0.4.0", path = "../git-hash" }
3333
git-object = { version = "^0.10.0", path = "../git-object" }
3434
git-pack = { version = "^0.2", path = "../git-pack" }
3535

git-pack/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ all-features = true
3232

3333
[dependencies]
3434
git-features = { version = "^0.15.0", path = "../git-features", features = ["crc32", "sha1", "progress", "zlib"] }
35-
git-hash = { version = "^0.3.0", path = "../git-hash" }
35+
git-hash = { version = "^0.4.0", path = "../git-hash" }
3636
git-object = { version = "^0.10.0", path = "../git-object" }
3737
git-traverse = { version = "^0.3", path = "../git-traverse" }
3838
git-diff = { version = "^0.4", path = "../git-diff" }

0 commit comments

Comments
 (0)