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

Diff for: Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: experiments/diffing/Cargo.toml

+1-1
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"

Diff for: experiments/object-access/Cargo.toml

+1-1
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"

Diff for: git-commitgraph/Cargo.toml

+1-1
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"

Diff for: git-diff/Cargo.toml

+1-1
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

Diff for: git-features/Cargo.toml

+1-1
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 }

Diff for: git-hash/Cargo.toml

+1-1
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"

Diff for: git-object/Cargo.toml

+1-1
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"

Diff for: git-odb/Cargo.toml

+1-1
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

Diff for: git-pack/Cargo.toml

+1-1
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" }

Diff for: git-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ required-features = []
2828
[dependencies]
2929
git-features = { version = "^0.15.0", path = "../git-features", features = ["progress"] }
3030
git-transport = { version = "^0.9.0", path = "../git-transport" }
31-
git-hash = { version = "^0.3.0", path = "../git-hash" }
31+
git-hash = { version = "^0.4.0", path = "../git-hash" }
3232

3333
quick-error = "2.0.0"
3434
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}

Diff for: git-ref/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ test = true
1515
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1616

1717
[dependencies]
18-
git-hash = { version = "^0.3.0", path = "../git-hash" }
18+
git-hash = { version = "^0.4.0", path = "../git-hash" }
1919
git-validate = { version = "^0.2.0", path = "../git-validate" }
2020

2121
quick-error = "2.0.0"

Diff for: git-repository/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ one-stop-shop = ["git-hash"]
2020
[dependencies]
2121
git-ref = { version = "0.5.0", path = "../git-ref" }
2222
git-odb = { version = "^0.16", path = "../git-odb" }
23-
git-hash = { version = "^0.3.0", path = "../git-hash", optional = true }
23+
git-hash = { version = "^0.4.0", path = "../git-hash", optional = true }
2424
quick-error = "2.0.0"
2525

2626
[dev-dependencies]

Diff for: git-traverse/Cargo.toml

+1-1
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

Diff for: gitoxide-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ all-features = true
2222
[dependencies]
2323
git-repository = { version = "^0.5.0", path = "../git-repository" }
2424
git-object = { version = "^0.10.0", path = "../git-object" }
25-
git-hash = { version = "^0.3.0", path = "../git-hash" }
25+
git-hash = { version = "^0.4.0", path = "../git-hash" }
2626
git-odb = { version = "^0.16.0", path = "../git-odb" }
2727
git-pack = { version = "^0.2", path = "../git-pack", features = ["pack-cache-lru-static"] }
2828
git-protocol = { version = "^0.8.0", path = "../git-protocol", features = ["blocking-client"] }

Diff for: tests/tools/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ path = "src/main.rs"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
git-hash = { version = "0.3.0", path = "../../git-hash" }
16+
git-hash = { version = "^0.4.0", path = "../../git-hash" }
1717
bstr = "0.2.15"
1818
crc = "1.8.1"
1919
once_cell = "1.7.2"

0 commit comments

Comments
 (0)