Skip to content

Commit f0ed2cc

Browse files
committed
Release gix-glob v0.20.1, gix-attributes v0.26.1, gix-command v0.6.1, gix-filter v0.19.2, gix-worktree-stream v0.21.2, gix-archive v0.21.2
1 parent 31b86ee commit f0ed2cc

File tree

26 files changed

+60
-54
lines changed

26 files changed

+60
-54
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gitoxide-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"]
5252
gix = { version = "^0.72.1", path = "../gix", default-features = false, features = ["merge", "blob-diff", "blame", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status", "dirwalk"] }
5353
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.59.1", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static", "generate", "streaming-input"] }
5454
gix-transport-configuration-only = { package = "gix-transport", version = "^0.47.0", path = "../gix-transport", default-features = false }
55-
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.21.1", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }
55+
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.21.2", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }
5656
gix-status = { version = "^0.19.1", path = "../gix-status" }
5757
gix-fsck = { version = "^0.11.1", path = "../gix-fsck" }
5858
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

gix-archive/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ 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-
## Unreleased
8+
## 0.21.2 (2025-05-16)
99

1010
Update the `zip` dependency to the unyanked version 3.0.
1111

1212
### Commit Statistics
1313

1414
<csr-read-only-do-not-edit/>
1515

16-
- 6 commits contributed to the release over the course of 20 calendar days.
16+
- 7 commits contributed to the release over the course of 20 calendar days.
1717
- 20 days passed between releases.
1818
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1919
- 2 unique issues were worked on: [#1984](https://github.com/GitoxideLabs/gitoxide/issues/1984), [#2013](https://github.com/GitoxideLabs/gitoxide/issues/2013)
@@ -29,6 +29,7 @@ Update the `zip` dependency to the unyanked version 3.0.
2929
* **[#2013](https://github.com/GitoxideLabs/gitoxide/issues/2013)**
3030
- Avoid yanked `zip` dependency ([`8692657`](https://github.com/GitoxideLabs/gitoxide/commit/8692657ec7c7ab765fcf1aeb9f0e1c55384e39d3))
3131
* **Uncategorized**
32+
- Update changelogs prior to release ([`31b86ee`](https://github.com/GitoxideLabs/gitoxide/commit/31b86ee6774ad6762f941aa0e8377e709bd41f5e))
3233
- Merge pull request #2009 from GitoxideLabs/release-gix-index ([`c3f06ae`](https://github.com/GitoxideLabs/gitoxide/commit/c3f06ae424ab4e1918a364cabe8276297465a73a))
3334
- Release gix-path v0.10.18, gix-date v0.10.2, gix-traverse v0.46.2, gix-index v0.40.1 ([`d2b4c44`](https://github.com/GitoxideLabs/gitoxide/commit/d2b4c44fcb2bf43e80d67532262631a5086f08de))
3435
- Merge pull request #1984 from GitoxideLabs/fuzz ([`f965540`](https://github.com/GitoxideLabs/gitoxide/commit/f965540c162ed3e23bd0d7ad9083093033647e51))

gix-archive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-archive"
5-
version = "0.21.1"
5+
version = "0.21.2"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "archive generation from of a worktree stream"
@@ -28,7 +28,7 @@ zip = ["dep:flate2", "dep:zip"]
2828

2929

3030
[dependencies]
31-
gix-worktree-stream = { version = "^0.21.1", path = "../gix-worktree-stream" }
31+
gix-worktree-stream = { version = "^0.21.2", path = "../gix-worktree-stream" }
3232
gix-object = { version = "^0.49.1", path = "../gix-object" }
3333
gix-path = { version = "^0.10.18", path = "../gix-path", optional = true }
3434
gix-date = { version = "^0.10.2", path = "../gix-date" }

gix-attributes/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ 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-
## Unreleased
8+
## 0.26.1 (2025-05-16)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

1414
<csr-read-only-do-not-edit/>
1515

16-
- 3 commits contributed to the release over the course of 20 calendar days.
16+
- 4 commits contributed to the release over the course of 20 calendar days.
1717
- 20 days passed between releases.
1818
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1919
- 0 issues like '(#ID)' were seen in commit messages
@@ -25,6 +25,7 @@ A maintenance release without user-facing changes.
2525
<details><summary>view details</summary>
2626

2727
* **Uncategorized**
28+
- Update changelogs prior to release ([`31b86ee`](https://github.com/GitoxideLabs/gitoxide/commit/31b86ee6774ad6762f941aa0e8377e709bd41f5e))
2829
- Merge pull request #2009 from GitoxideLabs/release-gix-index ([`c3f06ae`](https://github.com/GitoxideLabs/gitoxide/commit/c3f06ae424ab4e1918a364cabe8276297465a73a))
2930
- Release gix-path v0.10.18, gix-date v0.10.2, gix-traverse v0.46.2, gix-index v0.40.1 ([`d2b4c44`](https://github.com/GitoxideLabs/gitoxide/commit/d2b4c44fcb2bf43e80d67532262631a5086f08de))
3031
- Merge pull request #1971 from GitoxideLabs/new-release ([`8d4c4d1`](https://github.com/GitoxideLabs/gitoxide/commit/8d4c4d1e09f84c962c29d98a686c64228196ac13))

gix-attributes/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-attributes"
5-
version = "0.26.0"
5+
version = "0.26.1"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "A crate of the gitoxide project dealing .gitattributes files"
@@ -21,7 +21,7 @@ serde = ["dep:serde", "bstr/serde", "gix-glob/serde", "kstring/serde"]
2121
[dependencies]
2222
gix-path = { version = "^0.10.18", path = "../gix-path" }
2323
gix-quote = { version = "^0.6.0", path = "../gix-quote" }
24-
gix-glob = { version = "^0.20.0", path = "../gix-glob" }
24+
gix-glob = { version = "^0.20.1", path = "../gix-glob" }
2525
gix-trace = { version = "^0.1.12", path = "../gix-trace" }
2626

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

gix-command/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ 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-
## Unreleased
8+
## 0.6.1 (2025-05-16)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

1414
<csr-read-only-do-not-edit/>
1515

16-
- 3 commits contributed to the release over the course of 20 calendar days.
16+
- 4 commits contributed to the release over the course of 20 calendar days.
1717
- 20 days passed between releases.
1818
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1919
- 0 issues like '(#ID)' were seen in commit messages
@@ -25,6 +25,7 @@ A maintenance release without user-facing changes.
2525
<details><summary>view details</summary>
2626

2727
* **Uncategorized**
28+
- Update changelogs prior to release ([`31b86ee`](https://github.com/GitoxideLabs/gitoxide/commit/31b86ee6774ad6762f941aa0e8377e709bd41f5e))
2829
- Merge pull request #2009 from GitoxideLabs/release-gix-index ([`c3f06ae`](https://github.com/GitoxideLabs/gitoxide/commit/c3f06ae424ab4e1918a364cabe8276297465a73a))
2930
- Release gix-path v0.10.18, gix-date v0.10.2, gix-traverse v0.46.2, gix-index v0.40.1 ([`d2b4c44`](https://github.com/GitoxideLabs/gitoxide/commit/d2b4c44fcb2bf43e80d67532262631a5086f08de))
3031
- Merge pull request #1971 from GitoxideLabs/new-release ([`8d4c4d1`](https://github.com/GitoxideLabs/gitoxide/commit/8d4c4d1e09f84c962c29d98a686c64228196ac13))

gix-command/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-command"
5-
version = "0.6.0"
5+
version = "0.6.1"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "A crate of the gitoxide project handling internal git command execution"

gix-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ gix-config-value = { version = "^0.15.0", path = "../gix-config-value" }
2424
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" }
27-
gix-glob = { version = "^0.20.0", path = "../gix-glob" }
27+
gix-glob = { version = "^0.20.1", path = "../gix-glob" }
2828

2929
winnow = { version = "0.7.7", features = ["simd"] }
3030
memchr = "2"

gix-credentials/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ serde = ["dep:serde", "bstr/serde", "gix-sec/serde"]
2222
gix-sec = { version = "^0.11.0", path = "../gix-sec" }
2323
gix-url = { version = "^0.31.0", path = "../gix-url" }
2424
gix-path = { version = "^0.10.18", path = "../gix-path" }
25-
gix-command = { version = "^0.6.0", path = "../gix-command" }
25+
gix-command = { version = "^0.6.1", 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" }
2828
gix-date = { version = "^0.10.1", path = "../gix-date" }

gix-diff/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ doctest = false
2929
[dependencies]
3030
gix-index = { version = "^0.40.1", path = "../gix-index", optional = true }
3131
gix-pathspec = { version = "^0.11.0", path = "../gix-pathspec", optional = true }
32-
gix-attributes = { version = "^0.26.0", path = "../gix-attributes", optional = true }
32+
gix-attributes = { version = "^0.26.1", 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" }
35-
gix-filter = { version = "^0.19.1", path = "../gix-filter", optional = true }
35+
gix-filter = { version = "^0.19.2", path = "../gix-filter", optional = true }
3636
gix-worktree = { version = "^0.41.0", path = "../gix-worktree", default-features = false, features = ["attributes"], optional = true }
37-
gix-command = { version = "^0.6.0", path = "../gix-command", optional = true }
37+
gix-command = { version = "^0.6.1", path = "../gix-command", optional = true }
3838
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 }

gix-filter/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ 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-
## Unreleased
8+
## 0.19.2 (2025-05-16)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

1414
<csr-read-only-do-not-edit/>
1515

16-
- 3 commits contributed to the release over the course of 20 calendar days.
16+
- 4 commits contributed to the release over the course of 20 calendar days.
1717
- 20 days passed between releases.
1818
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1919
- 0 issues like '(#ID)' were seen in commit messages
@@ -25,6 +25,7 @@ A maintenance release without user-facing changes.
2525
<details><summary>view details</summary>
2626

2727
* **Uncategorized**
28+
- Update changelogs prior to release ([`31b86ee`](https://github.com/GitoxideLabs/gitoxide/commit/31b86ee6774ad6762f941aa0e8377e709bd41f5e))
2829
- Merge pull request #2009 from GitoxideLabs/release-gix-index ([`c3f06ae`](https://github.com/GitoxideLabs/gitoxide/commit/c3f06ae424ab4e1918a364cabe8276297465a73a))
2930
- Release gix-path v0.10.18, gix-date v0.10.2, gix-traverse v0.46.2, gix-index v0.40.1 ([`d2b4c44`](https://github.com/GitoxideLabs/gitoxide/commit/d2b4c44fcb2bf43e80d67532262631a5086f08de))
3031
- Merge pull request #1971 from GitoxideLabs/new-release ([`8d4c4d1`](https://github.com/GitoxideLabs/gitoxide/commit/8d4c4d1e09f84c962c29d98a686c64228196ac13))

gix-filter/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-filter"
5-
version = "0.19.1"
5+
version = "0.19.2"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "A crate of the gitoxide project implementing git filters"
@@ -18,12 +18,12 @@ doctest = false
1818
gix-hash = { version = "^0.18.0", path = "../gix-hash" }
1919
gix-trace = { version = "^0.1.12", path = "../gix-trace" }
2020
gix-object = { version = "^0.49.1", path = "../gix-object" }
21-
gix-command = { version = "^0.6.0", path = "../gix-command" }
21+
gix-command = { version = "^0.6.1", path = "../gix-command" }
2222
gix-quote = { version = "^0.6.0", path = "../gix-quote" }
2323
gix-utils = { version = "^0.3.0", path = "../gix-utils" }
2424
gix-path = { version = "^0.10.18", path = "../gix-path" }
2525
gix-packetline-blocking = { version = "^0.19.0", path = "../gix-packetline-blocking" }
26-
gix-attributes = { version = "^0.26.0", path = "../gix-attributes" }
26+
gix-attributes = { version = "^0.26.1", path = "../gix-attributes" }
2727

2828
encoding_rs = "0.8.32"
2929
bstr = { version = "1.12.0", default-features = false, features = ["std"] }

gix-glob/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ 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-
## Unreleased
8+
## 0.20.1 (2025-05-16)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

1414
<csr-read-only-do-not-edit/>
1515

16-
- 3 commits contributed to the release over the course of 20 calendar days.
16+
- 4 commits contributed to the release over the course of 20 calendar days.
1717
- 20 days passed between releases.
1818
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1919
- 0 issues like '(#ID)' were seen in commit messages
@@ -25,6 +25,7 @@ A maintenance release without user-facing changes.
2525
<details><summary>view details</summary>
2626

2727
* **Uncategorized**
28+
- Update changelogs prior to release ([`31b86ee`](https://github.com/GitoxideLabs/gitoxide/commit/31b86ee6774ad6762f941aa0e8377e709bd41f5e))
2829
- Merge pull request #2009 from GitoxideLabs/release-gix-index ([`c3f06ae`](https://github.com/GitoxideLabs/gitoxide/commit/c3f06ae424ab4e1918a364cabe8276297465a73a))
2930
- Release gix-path v0.10.18, gix-date v0.10.2, gix-traverse v0.46.2, gix-index v0.40.1 ([`d2b4c44`](https://github.com/GitoxideLabs/gitoxide/commit/d2b4c44fcb2bf43e80d67532262631a5086f08de))
3031
- Merge pull request #1971 from GitoxideLabs/new-release ([`8d4c4d1`](https://github.com/GitoxideLabs/gitoxide/commit/8d4c4d1e09f84c962c29d98a686c64228196ac13))

gix-glob/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-glob"
5-
version = "0.20.0"
5+
version = "0.20.1"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "A crate of the gitoxide project dealing with pattern matching"

gix-ignore/Cargo.toml

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

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

gix-merge/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ serde = ["dep:serde", "gix-hash/serde", "gix-object/serde"]
2121
[dependencies]
2222
gix-hash = { version = "^0.18.0", path = "../gix-hash" }
2323
gix-object = { version = "^0.49.1", path = "../gix-object" }
24-
gix-filter = { version = "^0.19.1", path = "../gix-filter" }
24+
gix-filter = { version = "^0.19.2", path = "../gix-filter" }
2525
gix-worktree = { version = "^0.41.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
26-
gix-command = { version = "^0.6.0", path = "../gix-command" }
26+
gix-command = { version = "^0.6.1", path = "../gix-command" }
2727
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" }

gix-pathspec/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ include = ["src/**/*", "LICENSE-*", "README.md"]
1515
doctest = false
1616

1717
[dependencies]
18-
gix-glob = { version = "^0.20.0", path = "../gix-glob" }
18+
gix-glob = { version = "^0.20.1", path = "../gix-glob" }
1919
gix-path = { version = "^0.10.18", path = "../gix-path" }
20-
gix-attributes = { version = "^0.26.0", path = "../gix-attributes" }
20+
gix-attributes = { version = "^0.26.1", path = "../gix-attributes" }
2121
gix-config-value = { version = "^0.15.0", path = "../gix-config-value" }
2222

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

gix-prompt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rust-version = "1.70"
1515
doctest = false
1616

1717
[dependencies]
18-
gix-command = { version = "^0.6.0", path = "../gix-command" }
18+
gix-command = { version = "^0.6.1", path = "../gix-command" }
1919
gix-config-value = { version = "^0.15.0", path = "../gix-config-value" }
2020

2121
thiserror = "2.0.0"

gix-status/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ gix-hash = { version = "^0.18.0", path = "../gix-hash" }
2626
gix-object = { version = "^0.49.1", path = "../gix-object" }
2727
gix-path = { version = "^0.10.18", path = "../gix-path" }
2828
gix-features = { version = "^0.42.1", path = "../gix-features", features = ["progress"] }
29-
gix-filter = { version = "^0.19.1", path = "../gix-filter" }
29+
gix-filter = { version = "^0.19.2", path = "../gix-filter" }
3030
gix-worktree = { version = "^0.41.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
3131
gix-pathspec = { version = "^0.11.0", path = "../gix-pathspec" }
3232

gix-transport/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ path = "tests/async-transport.rs"
8181
required-features = ["async-client"]
8282

8383
[dependencies]
84-
gix-command = { version = "^0.6.0", path = "../gix-command" }
84+
gix-command = { version = "^0.6.1", path = "../gix-command" }
8585
gix-features = { version = "^0.42.1", path = "../gix-features" }
8686
gix-url = { version = "^0.31.0", path = "../gix-url" }
8787
gix-sec = { version = "^0.11.0", path = "../gix-sec" }

gix-worktree-state/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ gix-index = { version = "^0.40.1", path = "../gix-index" }
2121
gix-fs = { version = "^0.15.0", path = "../gix-fs" }
2222
gix-hash = { version = "^0.18.0", path = "../gix-hash" }
2323
gix-object = { version = "^0.49.1", path = "../gix-object" }
24-
gix-glob = { version = "^0.20.0", path = "../gix-glob" }
24+
gix-glob = { version = "^0.20.1", path = "../gix-glob" }
2525
gix-path = { version = "^0.10.18", path = "../gix-path" }
2626
gix-features = { version = "^0.42.1", path = "../gix-features" }
27-
gix-filter = { version = "^0.19.1", path = "../gix-filter" }
27+
gix-filter = { version = "^0.19.2", path = "../gix-filter" }
2828

2929
io-close = "0.3.7"
3030
thiserror = "2.0.0"

0 commit comments

Comments
 (0)