Skip to content

Commit c3f06ae

Browse files
authored
Merge pull request #2009 from GitoxideLabs/release-gix-index
release gix index
2 parents fdfb239 + d2b4c44 commit c3f06ae

File tree

39 files changed

+202
-59
lines changed

39 files changed

+202
-59
lines changed

Cargo.lock

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

gix-archive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ zip = ["dep:flate2", "dep:zip"]
3030
[dependencies]
3131
gix-worktree-stream = { version = "^0.21.1", path = "../gix-worktree-stream" }
3232
gix-object = { version = "^0.49.1", path = "../gix-object" }
33-
gix-path = { version = "^0.10.17", path = "../gix-path", optional = true }
34-
gix-date = { version = "^0.10.1", path = "../gix-date" }
33+
gix-path = { version = "^0.10.18", path = "../gix-path", optional = true }
34+
gix-date = { version = "^0.10.2", path = "../gix-date" }
3535

3636
flate2 = { version = "1.1.1", optional = true, default-features = false, features = ["zlib-rs"] }
3737
zip = { version = "2.6.1", optional = true, default-features = false, features = ["deflate"] }

gix-attributes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ doctest = false
1919
serde = ["dep:serde", "bstr/serde", "gix-glob/serde", "kstring/serde"]
2020

2121
[dependencies]
22-
gix-path = { version = "^0.10.17", path = "../gix-path" }
22+
gix-path = { version = "^0.10.18", path = "../gix-path" }
2323
gix-quote = { version = "^0.6.0", path = "../gix-quote" }
2424
gix-glob = { version = "^0.20.0", path = "../gix-glob" }
2525
gix-trace = { version = "^0.1.12", path = "../gix-trace" }

gix-blame/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ rust-version = "1.70"
1414
gix-commitgraph = { version = "^0.28.0", path = "../gix-commitgraph" }
1515
gix-revwalk = { version = "^0.20.1", path = "../gix-revwalk" }
1616
gix-trace = { version = "^0.1.12", path = "../gix-trace" }
17-
gix-date = { version = "^0.10.1", path = "../gix-date" }
17+
gix-date = { version = "^0.10.2", path = "../gix-date" }
1818
gix-diff = { version = "^0.52.1", path = "../gix-diff", default-features = false, features = ["blob"] }
1919
gix-object = { version = "^0.49.1", path = "../gix-object" }
2020
gix-hash = { version = "^0.18.0", path = "../gix-hash" }
2121
gix-worktree = { version = "^0.41.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
22-
gix-traverse = { version = "^0.46.1", path = "../gix-traverse" }
22+
gix-traverse = { version = "^0.46.2", path = "../gix-traverse" }
2323

2424
smallvec = "1.15.0"
2525
thiserror = "2.0.0"

gix-command/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ doctest = false
1616

1717
[dependencies]
1818
gix-trace = { version = "^0.1.12", path = "../gix-trace" }
19-
gix-path = { version = "^0.10.17", path = "../gix-path" }
19+
gix-path = { version = "^0.10.18", path = "../gix-path" }
2020
gix-quote = { version = "^0.6.0", path = "../gix-quote" }
2121

2222
bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }

gix-config-value/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ doctest = false
1919
serde = ["dep:serde", "bstr/serde"]
2020

2121
[dependencies]
22-
gix-path = { version = "^0.10.17", path = "../gix-path" }
22+
gix-path = { version = "^0.10.18", path = "../gix-path" }
2323

2424
thiserror = "2.0.0"
2525
bstr = { version = "1.12.0", default-features = false, features = ["std"] }

gix-config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ serde = ["dep:serde", "bstr/serde", "gix-sec/serde", "gix-ref/serde", "gix-glob/
2121
[dependencies]
2222
gix-features = { version = "^0.42.1", path = "../gix-features" }
2323
gix-config-value = { version = "^0.15.0", path = "../gix-config-value" }
24-
gix-path = { version = "^0.10.17", path = "../gix-path" }
24+
gix-path = { version = "^0.10.18", path = "../gix-path" }
2525
gix-sec = { version = "^0.11.0", path = "../gix-sec" }
2626
gix-ref = { version = "^0.52.1", path = "../gix-ref" }
2727
gix-glob = { version = "^0.20.0", path = "../gix-glob" }

gix-credentials/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ serde = ["dep:serde", "bstr/serde", "gix-sec/serde"]
2121
[dependencies]
2222
gix-sec = { version = "^0.11.0", path = "../gix-sec" }
2323
gix-url = { version = "^0.31.0", path = "../gix-url" }
24-
gix-path = { version = "^0.10.17", path = "../gix-path" }
24+
gix-path = { version = "^0.10.18", path = "../gix-path" }
2525
gix-command = { version = "^0.6.0", path = "../gix-command" }
2626
gix-config-value = { version = "^0.15.0", path = "../gix-config-value" }
2727
gix-prompt = { version = "^0.11.0", path = "../gix-prompt" }

gix-date/CHANGELOG.md

+32-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,42 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.10.2 (2025-05-10)
9+
10+
A maintenance release without user-facing changes.
11+
12+
### Commit Statistics
13+
14+
<csr-read-only-do-not-edit/>
15+
16+
- 5 commits contributed to the release over the course of 14 calendar days.
17+
- 14 days passed between releases.
18+
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
19+
- 2 unique issues were worked on: [#1979](https://github.com/GitoxideLabs/gitoxide/issues/1979), [#1984](https://github.com/GitoxideLabs/gitoxide/issues/1984)
20+
21+
### Commit Details
22+
23+
<csr-read-only-do-not-edit/>
24+
25+
<details><summary>view details</summary>
26+
27+
* **[#1979](https://github.com/GitoxideLabs/gitoxide/issues/1979)**
28+
- Reproduce fuzz-failure ([`6bf1be6`](https://github.com/GitoxideLabs/gitoxide/commit/6bf1be67ba93c1b8e467e3c3127438d1eb43897e))
29+
* **[#1984](https://github.com/GitoxideLabs/gitoxide/issues/1984)**
30+
- Further upgrade `jiff` to fix fuzz failures ([`0be4dd4`](https://github.com/GitoxideLabs/gitoxide/commit/0be4dd4e037e8a3080ef335913e06bc2584fd96d))
31+
* **Uncategorized**
32+
- Prepare changelogs prior to release of `gix-index` ([`bfc4880`](https://github.com/GitoxideLabs/gitoxide/commit/bfc48801bf3ed39cdf7ec02e01aa3cfb6181705f))
33+
- Merge pull request #1984 from GitoxideLabs/fuzz ([`f965540`](https://github.com/GitoxideLabs/gitoxide/commit/f965540c162ed3e23bd0d7ad9083093033647e51))
34+
- Merge pull request #1971 from GitoxideLabs/new-release ([`8d4c4d1`](https://github.com/GitoxideLabs/gitoxide/commit/8d4c4d1e09f84c962c29d98a686c64228196ac13))
35+
</details>
36+
837
## 0.10.1 (2025-04-26)
938

1039
### Commit Statistics
1140

1241
<csr-read-only-do-not-edit/>
1342

14-
- 1 commit contributed to the release.
43+
- 3 commits contributed to the release.
1544
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1645
- 0 issues like '(#ID)' were seen in commit messages
1746

@@ -22,7 +51,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2251
<details><summary>view details</summary>
2352

2453
* **Uncategorized**
54+
- Release gix-date v0.10.1, gix-utils v0.3.0, gix-actor v0.35.1, gix-validate v0.10.0, gix-path v0.10.17, gix-features v0.42.1, gix-hash v0.18.0, gix-hashtable v0.8.1, gix-object v0.49.1, gix-glob v0.20.0, gix-quote v0.6.0, gix-attributes v0.26.0, gix-command v0.6.0, gix-packetline-blocking v0.19.0, gix-filter v0.19.1, gix-fs v0.15.0, gix-commitgraph v0.28.0, gix-revwalk v0.20.1, gix-traverse v0.46.1, gix-worktree-stream v0.21.1, gix-archive v0.21.1, gix-tempfile v17.1.0, gix-lock v17.1.0, gix-index v0.40.0, gix-config-value v0.15.0, gix-pathspec v0.11.0, gix-ignore v0.15.0, gix-worktree v0.41.0, gix-diff v0.52.1, gix-blame v0.2.1, gix-ref v0.52.1, gix-sec v0.11.0, gix-config v0.45.1, gix-prompt v0.11.0, gix-url v0.31.0, gix-credentials v0.29.0, gix-discover v0.40.1, gix-dir v0.14.1, gix-mailmap v0.27.1, gix-revision v0.34.1, gix-merge v0.5.1, gix-negotiate v0.20.1, gix-pack v0.59.1, gix-odb v0.69.1, gix-refspec v0.30.1, gix-shallow v0.4.0, gix-packetline v0.19.0, gix-transport v0.47.0, gix-protocol v0.50.1, gix-status v0.19.1, gix-submodule v0.19.1, gix-worktree-state v0.19.0, gix v0.72.1, gix-fsck v0.11.1, gitoxide-core v0.47.1, gitoxide v0.44.0 ([`e104545`](https://github.com/GitoxideLabs/gitoxide/commit/e104545b78951ca882481d4a58f4425a8bc81c87))
2555
- Bump all prior pratch levels to majors ([`5f7f805`](https://github.com/GitoxideLabs/gitoxide/commit/5f7f80570e1a5522e76ea58cccbb957249a0dffe))
56+
- Merge pull request #1969 from GitoxideLabs/new-release ([`631f07a`](https://github.com/GitoxideLabs/gitoxide/commit/631f07ad0c1cb93d9da42cf2c8499584fe91880a))
2657
</details>
2758

2859
## 0.10.0 (2025-04-25)

gix-date/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-date"
5-
version = "0.10.1"
5+
version = "0.10.2"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "A crate of the gitoxide project parsing dates the way git does"

gix-diff/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ wasm = ["dep:getrandom"]
2727
doctest = false
2828

2929
[dependencies]
30-
gix-index = { version = "^0.40.0", path = "../gix-index", optional = true }
30+
gix-index = { version = "^0.40.1", path = "../gix-index", optional = true }
3131
gix-pathspec = { version = "^0.11.0", path = "../gix-pathspec", optional = true }
3232
gix-attributes = { version = "^0.26.0", path = "../gix-attributes", optional = true }
3333
gix-hash = { version = "^0.18.0", path = "../gix-hash" }
3434
gix-object = { version = "^0.49.1", path = "../gix-object" }
3535
gix-filter = { version = "^0.19.1", path = "../gix-filter", optional = true }
3636
gix-worktree = { version = "^0.41.0", path = "../gix-worktree", default-features = false, features = ["attributes"], optional = true }
3737
gix-command = { version = "^0.6.0", path = "../gix-command", optional = true }
38-
gix-path = { version = "^0.10.17", path = "../gix-path", optional = true }
38+
gix-path = { version = "^0.10.18", path = "../gix-path", optional = true }
3939
gix-fs = { version = "^0.15.0", path = "../gix-fs", optional = true }
4040
gix-tempfile = { version = "^17.1.0", path = "../gix-tempfile", optional = true }
4141
gix-trace = { version = "^0.1.12", path = "../gix-trace", optional = true }
42-
gix-traverse = { version = "^0.46.1", path = "../gix-traverse", optional = true }
42+
gix-traverse = { version = "^0.46.2", path = "../gix-traverse", optional = true }
4343

4444
thiserror = "2.0.0"
4545
imara-diff = { version = "0.1.7", optional = true }

gix-dir/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ test = false
1616

1717
[dependencies]
1818
gix-trace = { version = "^0.1.12", path = "../gix-trace" }
19-
gix-index = { version = "^0.40.0", path = "../gix-index" }
19+
gix-index = { version = "^0.40.1", path = "../gix-index" }
2020
gix-discover = { version = "^0.40.1", path = "../gix-discover" }
2121
gix-fs = { version = "^0.15.0", path = "../gix-fs" }
22-
gix-path = { version = "^0.10.17", path = "../gix-path" }
22+
gix-path = { version = "^0.10.18", path = "../gix-path" }
2323
gix-pathspec = { version = "^0.11.0", path = "../gix-pathspec" }
2424
gix-worktree = { version = "^0.41.0", path = "../gix-worktree", default-features = false }
2525
gix-object = { version = "^0.49.1", path = "../gix-object" }

gix-discover/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ doctest = false
1616

1717
[dependencies]
1818
gix-sec = { version = "^0.11.0", path = "../gix-sec" }
19-
gix-path = { version = "^0.10.17", path = "../gix-path" }
19+
gix-path = { version = "^0.10.18", path = "../gix-path" }
2020
gix-ref = { version = "^0.52.1", path = "../gix-ref" }
2121
gix-hash = { version = "^0.18.0", path = "../gix-hash" }
2222
gix-fs = { version = "^0.15.0", path = "../gix-fs" }

gix-filter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ gix-object = { version = "^0.49.1", path = "../gix-object" }
2121
gix-command = { version = "^0.6.0", path = "../gix-command" }
2222
gix-quote = { version = "^0.6.0", path = "../gix-quote" }
2323
gix-utils = { version = "^0.3.0", path = "../gix-utils" }
24-
gix-path = { version = "^0.10.17", path = "../gix-path" }
24+
gix-path = { version = "^0.10.18", path = "../gix-path" }
2525
gix-packetline-blocking = { version = "^0.19.0", path = "../gix-packetline-blocking" }
2626
gix-attributes = { version = "^0.26.0", path = "../gix-attributes" }
2727

gix-glob/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ doctest = false
1919
serde = ["dep:serde", "bstr/serde", "bitflags/serde"]
2020

2121
[dependencies]
22-
gix-path = { version = "^0.10.17", path = "../gix-path" }
22+
gix-path = { version = "^0.10.18", path = "../gix-path" }
2323
gix-features = { version = "^0.42.1", path = "../gix-features" }
2424
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
2525
bitflags = "2"

gix-ignore/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = ["dep:serde", "bstr/serde", "gix-glob/serde"]
2020

2121
[dependencies]
2222
gix-glob = { version = "^0.20.0", path = "../gix-glob" }
23-
gix-path = { version = "^0.10.17", path = "../gix-path" }
23+
gix-path = { version = "^0.10.18", path = "../gix-path" }
2424
gix-trace = { version = "^0.1.12", path = "../gix-trace" }
2525

2626
bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }

gix-index/CHANGELOG.md

+33-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,43 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.40.1 (2025-05-10)
9+
10+
### Bug Fixes
11+
12+
- <csr-id-00e89341cd89f58d031eee8a4e60f6ebdcd53185/> Fix build on NetBSD
13+
14+
### Commit Statistics
15+
16+
<csr-read-only-do-not-edit/>
17+
18+
- 6 commits contributed to the release over the course of 14 calendar days.
19+
- 14 days passed between releases.
20+
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
21+
- 0 issues like '(#ID)' were seen in commit messages
22+
23+
### Commit Details
24+
25+
<csr-read-only-do-not-edit/>
26+
27+
<details><summary>view details</summary>
28+
29+
* **Uncategorized**
30+
- Prepare changelogs prior to release of `gix-index` ([`bfc4880`](https://github.com/GitoxideLabs/gitoxide/commit/bfc48801bf3ed39cdf7ec02e01aa3cfb6181705f))
31+
- Merge pull request #2005 from 0-wiz-0/main ([`33c4d6b`](https://github.com/GitoxideLabs/gitoxide/commit/33c4d6b6656c994ed090f2fddd70e014401baf30))
32+
- Fix build on NetBSD ([`00e8934`](https://github.com/GitoxideLabs/gitoxide/commit/00e89341cd89f58d031eee8a4e60f6ebdcd53185))
33+
- Merge pull request #1977 from GitoxideLabs/dependabot/cargo/cargo-811d7b929d ([`800738a`](https://github.com/GitoxideLabs/gitoxide/commit/800738a37f3d33926a427edfa294423bbe3f2b66))
34+
- Bump the cargo group with 12 updates ([`4408166`](https://github.com/GitoxideLabs/gitoxide/commit/4408166bf56197a67419277a4ef8feeba9060fee))
35+
- Merge pull request #1971 from GitoxideLabs/new-release ([`8d4c4d1`](https://github.com/GitoxideLabs/gitoxide/commit/8d4c4d1e09f84c962c29d98a686c64228196ac13))
36+
</details>
37+
838
## 0.40.0 (2025-04-26)
939

1040
### Commit Statistics
1141

1242
<csr-read-only-do-not-edit/>
1343

14-
- 1 commit contributed to the release.
44+
- 3 commits contributed to the release.
1545
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1646
- 0 issues like '(#ID)' were seen in commit messages
1747

@@ -22,7 +52,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2252
<details><summary>view details</summary>
2353

2454
* **Uncategorized**
55+
- Release gix-date v0.10.1, gix-utils v0.3.0, gix-actor v0.35.1, gix-validate v0.10.0, gix-path v0.10.17, gix-features v0.42.1, gix-hash v0.18.0, gix-hashtable v0.8.1, gix-object v0.49.1, gix-glob v0.20.0, gix-quote v0.6.0, gix-attributes v0.26.0, gix-command v0.6.0, gix-packetline-blocking v0.19.0, gix-filter v0.19.1, gix-fs v0.15.0, gix-commitgraph v0.28.0, gix-revwalk v0.20.1, gix-traverse v0.46.1, gix-worktree-stream v0.21.1, gix-archive v0.21.1, gix-tempfile v17.1.0, gix-lock v17.1.0, gix-index v0.40.0, gix-config-value v0.15.0, gix-pathspec v0.11.0, gix-ignore v0.15.0, gix-worktree v0.41.0, gix-diff v0.52.1, gix-blame v0.2.1, gix-ref v0.52.1, gix-sec v0.11.0, gix-config v0.45.1, gix-prompt v0.11.0, gix-url v0.31.0, gix-credentials v0.29.0, gix-discover v0.40.1, gix-dir v0.14.1, gix-mailmap v0.27.1, gix-revision v0.34.1, gix-merge v0.5.1, gix-negotiate v0.20.1, gix-pack v0.59.1, gix-odb v0.69.1, gix-refspec v0.30.1, gix-shallow v0.4.0, gix-packetline v0.19.0, gix-transport v0.47.0, gix-protocol v0.50.1, gix-status v0.19.1, gix-submodule v0.19.1, gix-worktree-state v0.19.0, gix v0.72.1, gix-fsck v0.11.1, gitoxide-core v0.47.1, gitoxide v0.44.0 ([`e104545`](https://github.com/GitoxideLabs/gitoxide/commit/e104545b78951ca882481d4a58f4425a8bc81c87))
2556
- Bump all prior pratch levels to majors ([`5f7f805`](https://github.com/GitoxideLabs/gitoxide/commit/5f7f80570e1a5522e76ea58cccbb957249a0dffe))
57+
- Merge pull request #1969 from GitoxideLabs/new-release ([`631f07a`](https://github.com/GitoxideLabs/gitoxide/commit/631f07ad0c1cb93d9da42cf2c8499584fe91880a))
2658
</details>
2759

2860
## 0.39.1 (2025-04-25)

gix-index/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-index"
5-
version = "0.40.0"
5+
version = "0.40.1"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "A work-in-progress crate of the gitoxide project dedicated implementing the git index file"
@@ -29,7 +29,7 @@ gix-hash = { version = "^0.18.0", path = "../gix-hash" }
2929
gix-bitmap = { version = "^0.2.14", path = "../gix-bitmap" }
3030
gix-object = { version = "^0.49.1", path = "../gix-object" }
3131
gix-validate = { version = "^0.10.0", path = "../gix-validate" }
32-
gix-traverse = { version = "^0.46.1", path = "../gix-traverse" }
32+
gix-traverse = { version = "^0.46.2", path = "../gix-traverse" }
3333
gix-lock = { version = "^17.1.0", path = "../gix-lock" }
3434
gix-fs = { version = "^0.15.0", path = "../gix-fs" }
3535
gix-utils = { version = "^0.3.0", path = "../gix-utils" }

gix-mailmap/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = ["dep:serde", "bstr/serde", "gix-actor/serde"]
2020

2121
[dependencies]
2222
gix-actor = { version = "^0.35.1", path = "../gix-actor" }
23-
gix-date = { version = "^0.10.1", path = "../gix-date" }
23+
gix-date = { version = "^0.10.2", path = "../gix-date" }
2424
bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }
2525
thiserror = "2.0.0"
2626
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

gix-merge/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ gix-object = { version = "^0.49.1", path = "../gix-object" }
2424
gix-filter = { version = "^0.19.1", path = "../gix-filter" }
2525
gix-worktree = { version = "^0.41.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
2626
gix-command = { version = "^0.6.0", path = "../gix-command" }
27-
gix-path = { version = "^0.10.17", path = "../gix-path" }
27+
gix-path = { version = "^0.10.18", path = "../gix-path" }
2828
gix-fs = { version = "^0.15.0", path = "../gix-fs" }
2929
gix-tempfile = { version = "^17.1.0", path = "../gix-tempfile" }
3030
gix-trace = { version = "^0.1.12", path = "../gix-trace" }
3131
gix-quote = { version = "^0.6.0", path = "../gix-quote" }
3232
gix-revision = { version = "^0.34.1", path = "../gix-revision", default-features = false, features = ["merge_base"] }
3333
gix-revwalk = { version = "^0.20.1", path = "../gix-revwalk" }
3434
gix-diff = { version = "^0.52.1", path = "../gix-diff", default-features = false, features = ["blob"] }
35-
gix-index = { version = "^0.40.0", path = "../gix-index" }
35+
gix-index = { version = "^0.40.1", path = "../gix-index" }
3636

3737
thiserror = "2.0.0"
3838
imara-diff = { version = "0.1.7" }

gix-negotiate/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ test = false
1818
[dependencies]
1919
gix-hash = { version = "^0.18.0", path = "../gix-hash" }
2020
gix-object = { version = "^0.49.1", path = "../gix-object" }
21-
gix-date = { version = "^0.10.1", path = "../gix-date" }
21+
gix-date = { version = "^0.10.2", path = "../gix-date" }
2222
gix-commitgraph = { version = "^0.28.0", path = "../gix-commitgraph" }
2323
gix-revwalk = { version = "^0.20.1", path = "../gix-revwalk" }
2424
thiserror = "2.0.0"

gix-odb/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ serde = ["dep:serde", "gix-hash/serde", "gix-object/serde", "gix-pack/serde"]
2323
gix-features = { version = "^0.42.1", path = "../gix-features", features = ["walkdir", "zlib", "crc32"] }
2424
gix-hashtable = { version = "^0.8.1", path = "../gix-hashtable" }
2525
gix-hash = { version = "^0.18.0", path = "../gix-hash" }
26-
gix-date = { version = "^0.10.1", path = "../gix-date" }
27-
gix-path = { version = "^0.10.17", path = "../gix-path" }
26+
gix-date = { version = "^0.10.2", path = "../gix-date" }
27+
gix-path = { version = "^0.10.18", path = "../gix-path" }
2828
gix-quote = { version = "^0.6.0", path = "../gix-quote" }
2929
gix-object = { version = "^0.49.1", path = "../gix-object" }
3030
gix-pack = { version = "^0.59.1", path = "../gix-pack", default-features = false }

0 commit comments

Comments
 (0)