Skip to content

Commit 54ac559

Browse files
committed
Release gix-index v0.32.1, gix-pathspec v0.7.4, gix-worktree v0.33.1, gix-dir v0.4.1
1 parent 6ca6fa6 commit 54ac559

File tree

14 files changed

+56
-52
lines changed

14 files changed

+56
-52
lines changed

Cargo.lock

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

gix-diff/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ doctest = false
2626
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
2727
gix-object = { version = "^0.42.0", path = "../gix-object" }
2828
gix-filter = { version = "^0.11.1", path = "../gix-filter", optional = true }
29-
gix-worktree = { version = "^0.33.0", path = "../gix-worktree", default-features = false, features = ["attributes"], optional = true }
29+
gix-worktree = { version = "^0.33.1", path = "../gix-worktree", default-features = false, features = ["attributes"], optional = true }
3030
gix-command = { version = "^0.3.6", path = "../gix-command", optional = true }
3131
gix-path = { version = "^0.10.7", path = "../gix-path", optional = true }
3232
gix-fs = { version = "^0.10.2", path = "../gix-fs", optional = true }

gix-dir/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.4.1 (2024-04-18)
99

1010
### Bug Fixes
1111

@@ -20,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020

2121
<csr-read-only-do-not-edit/>
2222

23-
- 3 commits contributed to the release over the course of 4 calendar days.
23+
- 4 commits contributed to the release over the course of 4 calendar days.
2424
- 5 days passed between releases.
2525
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2626
- 0 issues like '(#ID)' were seen in commit messages
@@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3232
<details><summary>view details</summary>
3333

3434
* **Uncategorized**
35+
- Prepare changelog prior to `gix-dir` patch release ([`6ca6fa6`](https://github.com/Byron/gitoxide/commit/6ca6fa69b5c21c8d8e9e07e21558e98201504cda))
3536
- Assure worktree-roots aren't pruned with pathspecs that are never meant for them. ([`7f2f3ff`](https://github.com/Byron/gitoxide/commit/7f2f3ff8adbecd631c2b4513995d6c94b21742eb))
3637
- Merge pull request #1345 from EliahKagan/shell-scripts ([`fe24c89`](https://github.com/Byron/gitoxide/commit/fe24c89e326670deaa3aaa643276d612d866072e))
3738
- Add missing +x bit on scripts that are run and not sourced ([`41bf65a`](https://github.com/Byron/gitoxide/commit/41bf65adef6f7d2cdd28fede262173ec7ba10822))

gix-dir/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-dir"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT OR Apache-2.0"
66
description = "A crate of the gitoxide project dealing with directory walks"
@@ -13,12 +13,12 @@ doctest = false
1313

1414
[dependencies]
1515
gix-trace = { version = "^0.1.9", path = "../gix-trace" }
16-
gix-index = { version = "^0.32.0", path = "../gix-index" }
16+
gix-index = { version = "^0.32.1", path = "../gix-index" }
1717
gix-discover = { version = "^0.31.0", path = "../gix-discover" }
1818
gix-fs = { version = "^0.10.2", path = "../gix-fs" }
1919
gix-path = { version = "^0.10.7", path = "../gix-path" }
20-
gix-pathspec = { version = "^0.7.3", path = "../gix-pathspec" }
21-
gix-worktree = { version = "^0.33.0", path = "../gix-worktree", default-features = false }
20+
gix-pathspec = { version = "^0.7.4", path = "../gix-pathspec" }
21+
gix-worktree = { version = "^0.33.1", path = "../gix-worktree", default-features = false }
2222
gix-object = { version = "^0.42.1", path = "../gix-object" }
2323
gix-ignore = { version = "^0.11.2", path = "../gix-ignore" }
2424
gix-utils = { version = "^0.1.12", path = "../gix-utils", features = ["bstr"] }

gix-index/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.32.1 (2024-04-18)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

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

16-
- 2 commits contributed to the release over the course of 4 calendar days.
16+
- 3 commits contributed to the release over the course of 4 calendar days.
1717
- 5 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+
- Prepare changelog prior to `gix-dir` patch release ([`6ca6fa6`](https://github.com/Byron/gitoxide/commit/6ca6fa69b5c21c8d8e9e07e21558e98201504cda))
2829
- Merge pull request #1345 from EliahKagan/shell-scripts ([`fe24c89`](https://github.com/Byron/gitoxide/commit/fe24c89e326670deaa3aaa643276d612d866072e))
2930
- Add missing +x bit on scripts that are run and not sourced ([`41bf65a`](https://github.com/Byron/gitoxide/commit/41bf65adef6f7d2cdd28fede262173ec7ba10822))
3031
</details>

gix-index/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-index"
3-
version = "0.32.0"
3+
version = "0.32.1"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT OR Apache-2.0"
66
description = "A work-in-progress crate of the gitoxide project dedicated implementing the git index file"

gix-pathspec/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.7.4 (2024-04-18)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

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

16-
- 2 commits contributed to the release over the course of 4 calendar days.
16+
- 3 commits contributed to the release over the course of 4 calendar days.
1717
- 5 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+
- Prepare changelog prior to `gix-dir` patch release ([`6ca6fa6`](https://github.com/Byron/gitoxide/commit/6ca6fa69b5c21c8d8e9e07e21558e98201504cda))
2829
- Merge pull request #1345 from EliahKagan/shell-scripts ([`fe24c89`](https://github.com/Byron/gitoxide/commit/fe24c89e326670deaa3aaa643276d612d866072e))
2930
- Add missing +x bit on scripts that are run and not sourced ([`41bf65a`](https://github.com/Byron/gitoxide/commit/41bf65adef6f7d2cdd28fede262173ec7ba10822))
3031
</details>

gix-pathspec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-pathspec"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT OR Apache-2.0"
66
description = "A crate of the gitoxide project dealing magical pathspecs"

gix-status/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ doctest = false
1818
worktree-rewrites = ["dep:gix-dir", "dep:gix-diff"]
1919

2020
[dependencies]
21-
gix-index = { version = "^0.32.0", path = "../gix-index" }
21+
gix-index = { version = "^0.32.1", path = "../gix-index" }
2222
gix-fs = { version = "^0.10.2", path = "../gix-fs" }
2323
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
2424
gix-object = { version = "^0.42.1", path = "../gix-object" }
2525
gix-path = { version = "^0.10.7", path = "../gix-path" }
2626
gix-features = { version = "^0.38.1", path = "../gix-features", features = ["progress"] }
2727
gix-filter = { version = "^0.11.1", path = "../gix-filter" }
28-
gix-worktree = { version = "^0.33.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
29-
gix-pathspec = { version = "^0.7.3", path = "../gix-pathspec" }
28+
gix-worktree = { version = "^0.33.1", path = "../gix-worktree", default-features = false, features = ["attributes"] }
29+
gix-pathspec = { version = "^0.7.4", path = "../gix-pathspec" }
3030

31-
gix-dir = { version = "^0.4.0", path = "../gix-dir", optional = true }
31+
gix-dir = { version = "^0.4.1", path = "../gix-dir", optional = true }
3232
gix-diff = { version = "^0.43.0", path = "../gix-diff", default-features = false, features = ["blob"], optional = true }
3333

3434
thiserror = "1.0.26"

gix-submodule/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ include = ["src/**/*", "LICENSE-*"]
1313
doctest = false
1414

1515
[dependencies]
16-
gix-pathspec = { version = "^0.7.1", path = "../gix-pathspec" }
16+
gix-pathspec = { version = "^0.7.4", path = "../gix-pathspec" }
1717
gix-refspec = { version = "^0.23.0", path = "../gix-refspec" }
1818
gix-config = { version = "^0.36.0", path = "../gix-config" }
1919
gix-path = { version = "^0.10.7", path = "../gix-path" }

gix-worktree-state/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ autotests = false
1414
doctest = false
1515

1616
[dependencies]
17-
gix-worktree = { version = "^0.33.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
18-
gix-index = { version = "^0.32.0", path = "../gix-index" }
17+
gix-worktree = { version = "^0.33.1", path = "../gix-worktree", default-features = false, features = ["attributes"] }
18+
gix-index = { version = "^0.32.1", path = "../gix-index" }
1919
gix-fs = { version = "^0.10.2", path = "../gix-fs" }
2020
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
2121
gix-object = { version = "^0.42.0", path = "../gix-object" }

gix-worktree/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.33.1 (2024-04-18)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

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

16-
- 2 commits contributed to the release over the course of 4 calendar days.
16+
- 3 commits contributed to the release over the course of 4 calendar days.
1717
- 5 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+
- Prepare changelog prior to `gix-dir` patch release ([`6ca6fa6`](https://github.com/Byron/gitoxide/commit/6ca6fa69b5c21c8d8e9e07e21558e98201504cda))
2829
- Merge pull request #1345 from EliahKagan/shell-scripts ([`fe24c89`](https://github.com/Byron/gitoxide/commit/fe24c89e326670deaa3aaa643276d612d866072e))
2930
- Add missing +x bit on scripts that are run and not sourced ([`41bf65a`](https://github.com/Byron/gitoxide/commit/41bf65adef6f7d2cdd28fede262173ec7ba10822))
3031
</details>

0 commit comments

Comments
 (0)