Skip to content

Commit e78a92b

Browse files
committed
prepare changelogs of next release
1 parent 0afe927 commit e78a92b

File tree

56 files changed

+2138
-340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+2138
-340
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,47 @@ 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
9+
10+
### New Features
11+
12+
- <csr-id-193ffcd9945891867a14aa5b6f87e27d3880b280/> Add `rev parse --reference`.
13+
It's similar to `git rev-parse --symbolic-full-name`.
14+
15+
### Bug Fixes (BREAKING)
16+
17+
- <csr-id-59b8104a5320d946abc9f5736fa76696cef1459d/> mark `gix::interrupt::init_handler()` as unsafe
18+
The passed `interrupt()` argument will be called from a signal
19+
handler, so that needs to be documented and the call sites need to
20+
state that they fulfill the contract.
21+
22+
Thanks to @Manishearth for pointing this out.
23+
24+
### Commit Statistics
25+
26+
<csr-read-only-do-not-edit/>
27+
28+
- 7 commits contributed to the release over the course of 21 calendar days.
29+
- 22 days passed between releases.
30+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
31+
- 0 issues like '(#ID)' were seen in commit messages
32+
33+
### Commit Details
34+
35+
<csr-read-only-do-not-edit/>
36+
37+
<details><summary>view details</summary>
38+
39+
* **Uncategorized**
40+
- Merge branch 'maintenance' ([`4454c9d`](https://github.com/Byron/gitoxide/commit/4454c9d66c32a1de75a66639016c73edbda3bd34))
41+
- Upgrade tabled and setup wordwrapping ([`a78caba`](https://github.com/Byron/gitoxide/commit/a78caba1e70adfae7beb2b4f6a18b8124efba46c))
42+
- Merge branch 'tracking-branch' ([`0fe20e8`](https://github.com/Byron/gitoxide/commit/0fe20e80145419e1662f869657dabf689786395f))
43+
- Add `rev parse --reference`. ([`193ffcd`](https://github.com/Byron/gitoxide/commit/193ffcd9945891867a14aa5b6f87e27d3880b280))
44+
- Merge branch 'main' into fix-1183 ([`1691ba6`](https://github.com/Byron/gitoxide/commit/1691ba669537f4a39ebb0891747dc509a6aedbef))
45+
- Merge branch 'push-yvzxzqrkkvry' ([`4917beb`](https://github.com/Byron/gitoxide/commit/4917beb5760a9bafb75b59331b282f4d6dbb64f5))
46+
- Mark `gix::interrupt::init_handler()` as unsafe ([`59b8104`](https://github.com/Byron/gitoxide/commit/59b8104a5320d946abc9f5736fa76696cef1459d))
47+
</details>
48+
849
## 0.32.0 (2023-12-06)
950

1051
### New Features

gitoxide-core/CHANGELOG.md

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,57 @@ 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
9+
10+
### New Features
11+
12+
- <csr-id-193ffcd9945891867a14aa5b6f87e27d3880b280/> Add `rev parse --reference`.
13+
It's similar to `git rev-parse --symbolic-full-name`.
14+
15+
### Bug Fixes
16+
17+
- <csr-id-0bc95684c32a053de22c06e6e45c8de5704fd8fb/> leave extensions in place if they are not `.git` when using `gix clone <url>`.
18+
Previously it would happily remove e.g. a `.net` extension, even though it's part of the
19+
repository name.
20+
21+
Further, when cloning with `--bare`, don't strip the extension at all as it's common
22+
to keep the `.git` extension in this case.
23+
- <csr-id-f1b33ba7518881adfe31a03c366000e1a6e0d7d4/> `ein t organize` can now handles repository moves from `./repo-name` to `./repo-name/actual-repo-name`.
24+
Previously such renames would fail as a directory can't be moved into a sub-directory of itself.
25+
26+
### Commit Statistics
27+
28+
<csr-read-only-do-not-edit/>
29+
30+
- 13 commits contributed to the release over the course of 21 calendar days.
31+
- 22 days passed between releases.
32+
- 3 commits were understood as [conventional](https://www.conventionalcommits.org).
33+
- 2 unique issues were worked on: [#1172](https://github.com/Byron/gitoxide/issues/1172), [#1177](https://github.com/Byron/gitoxide/issues/1177)
34+
35+
### Commit Details
36+
37+
<csr-read-only-do-not-edit/>
38+
39+
<details><summary>view details</summary>
40+
41+
* **[#1172](https://github.com/Byron/gitoxide/issues/1172)**
42+
- `ein t organize` can now handles repository moves from `./repo-name` to `./repo-name/actual-repo-name`. ([`f1b33ba`](https://github.com/Byron/gitoxide/commit/f1b33ba7518881adfe31a03c366000e1a6e0d7d4))
43+
* **[#1177](https://github.com/Byron/gitoxide/issues/1177)**
44+
- Leave extensions in place if they are not `.git` when using `gix clone <url>`. ([`0bc9568`](https://github.com/Byron/gitoxide/commit/0bc95684c32a053de22c06e6e45c8de5704fd8fb))
45+
* **Uncategorized**
46+
- Merge branch 'maintenance' ([`4454c9d`](https://github.com/Byron/gitoxide/commit/4454c9d66c32a1de75a66639016c73edbda3bd34))
47+
- Upgrade sysinfo ([`e06ab59`](https://github.com/Byron/gitoxide/commit/e06ab59e1377aeeef83d107c41c0d1d144571153))
48+
- Merge branch 'tracking-branch' ([`0fe20e8`](https://github.com/Byron/gitoxide/commit/0fe20e80145419e1662f869657dabf689786395f))
49+
- Add `rev parse --reference`. ([`193ffcd`](https://github.com/Byron/gitoxide/commit/193ffcd9945891867a14aa5b6f87e27d3880b280))
50+
- Merge branch 'main' into fix-1183 ([`1691ba6`](https://github.com/Byron/gitoxide/commit/1691ba669537f4a39ebb0891747dc509a6aedbef))
51+
- Merge branch 'fix-1177' ([`401b73d`](https://github.com/Byron/gitoxide/commit/401b73dcd2235dc73e0ebf01e3fc7a28baed0c35))
52+
- Merge branch 'organize-into-own-child' ([`84c998b`](https://github.com/Byron/gitoxide/commit/84c998bc6fbc8d45988ed56043ed54812c65bc4d))
53+
- Allow organize to move repositories into a child directory of their current location ([`15193a7`](https://github.com/Byron/gitoxide/commit/15193a7a96a19665fc14237842918f4198637f8a))
54+
- Merge branch '32bit' ([`ff1542c`](https://github.com/Byron/gitoxide/commit/ff1542cedf3072a8c7c493d454aef5cc61de6d4c))
55+
- Upgrade all dependencies of `gitoxide-core` ([`c8f804c`](https://github.com/Byron/gitoxide/commit/c8f804cc02a895182697f631cf3d49692f94e516))
56+
- Update `prodash` to latest version ([`97f62cb`](https://github.com/Byron/gitoxide/commit/97f62cb183cc36d6045c9320697bb0b4755d6f6b))
57+
</details>
58+
859
## 0.34.0 (2023-12-06)
960

1061
### New Features
@@ -39,7 +90,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3990

4091
<csr-read-only-do-not-edit/>
4192

42-
- 31 commits contributed to the release over the course of 53 calendar days.
93+
- 32 commits contributed to the release over the course of 53 calendar days.
4394
- 54 days passed between releases.
4495
- 6 commits were understood as [conventional](https://www.conventionalcommits.org).
4596
- 0 issues like '(#ID)' were seen in commit messages
@@ -51,6 +102,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
51102
<details><summary>view details</summary>
52103

53104
* **Uncategorized**
105+
- Release gix-fsck v0.1.0, gitoxide-core v0.34.0, gitoxide v0.32.0 ([`a96956b`](https://github.com/Byron/gitoxide/commit/a96956b0978c3618e7d3f2da049696f55a3b3c82))
54106
- Release gix-worktree-state v0.5.0, gix v0.56.0, gix-fsck v0.1.0, gitoxide-core v0.34.0, gitoxide v0.32.0 ([`c8568b9`](https://github.com/Byron/gitoxide/commit/c8568b9c9bf883f77e81a9a98b1fc2cbe726df79))
55107
- Release gix-worktree v0.28.0, gix-diff v0.38.0, gix-discover v0.27.0, gix-macros v0.1.1, gix-mailmap v0.20.1, gix-negotiate v0.10.0, gix-pack v0.45.0, gix-odb v0.55.0, gix-pathspec v0.4.1, gix-packetline v0.17.0, gix-transport v0.39.0, gix-protocol v0.42.0, gix-revision v0.24.0, gix-refspec v0.20.0, gix-status v0.3.0, gix-submodule v0.6.0, gix-worktree-state v0.5.0, gix v0.56.0, gix-fsck v0.1.0, gitoxide-core v0.34.0, gitoxide v0.32.0 ([`d3fd11e`](https://github.com/Byron/gitoxide/commit/d3fd11ec3783843d4e49081e1d14359ed9714b5f))
56108
- Release gix-date v0.8.1, gix-hash v0.13.2, gix-trace v0.1.4, gix-features v0.36.1, gix-actor v0.28.1, gix-validate v0.8.1, gix-object v0.39.0, gix-path v0.10.1, gix-glob v0.14.1, gix-quote v0.4.8, gix-attributes v0.20.1, gix-command v0.3.0, gix-packetline-blocking v0.17.0, gix-utils v0.1.6, gix-filter v0.7.0, gix-fs v0.8.1, gix-chunk v0.4.5, gix-commitgraph v0.22.1, gix-hashtable v0.4.1, gix-revwalk v0.10.0, gix-traverse v0.35.0, gix-worktree-stream v0.7.0, gix-archive v0.7.0, gix-config-value v0.14.1, gix-tempfile v11.0.1, gix-lock v11.0.1, gix-ref v0.39.0, gix-sec v0.10.1, gix-config v0.32.0, gix-prompt v0.8.0, gix-url v0.25.2, gix-credentials v0.22.0, gix-ignore v0.9.1, gix-bitmap v0.2.8, gix-index v0.27.0, gix-worktree v0.28.0, gix-diff v0.38.0, gix-discover v0.27.0, gix-macros v0.1.1, gix-mailmap v0.20.1, gix-negotiate v0.10.0, gix-pack v0.45.0, gix-odb v0.55.0, gix-pathspec v0.4.1, gix-packetline v0.17.0, gix-transport v0.39.0, gix-protocol v0.42.0, gix-revision v0.24.0, gix-refspec v0.20.0, gix-status v0.3.0, gix-submodule v0.6.0, gix-worktree-state v0.5.0, gix v0.56.0, gix-fsck v0.1.0, gitoxide-core v0.34.0, gitoxide v0.32.0, safety bump 27 crates ([`55d386a`](https://github.com/Byron/gitoxide/commit/55d386a2448aba1dd22c73fb63b3fd5b3a8401c9))

gix-actor/CHANGELOG.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,36 @@ 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
9+
10+
<csr-id-aea89c3ad52f1a800abb620e9a4701bdf904ff7d/>
11+
12+
### Chore
13+
14+
- <csr-id-aea89c3ad52f1a800abb620e9a4701bdf904ff7d/> upgrade MSRV to v1.70
15+
Our MSRV follows the one of `helix`, which in turn follows Firefox.
16+
17+
### Commit Statistics
18+
19+
<csr-read-only-do-not-edit/>
20+
21+
- 3 commits contributed to the release.
22+
- 22 days passed between releases.
23+
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
24+
- 0 issues like '(#ID)' were seen in commit messages
25+
26+
### Commit Details
27+
28+
<csr-read-only-do-not-edit/>
29+
30+
<details><summary>view details</summary>
31+
32+
* **Uncategorized**
33+
- Prepare changelogs of next release ([`86e49fc`](https://github.com/Byron/gitoxide/commit/86e49fca969d97c5744d7dc6a3abc8eb522bf3b9))
34+
- Merge branch 'maintenance' ([`4454c9d`](https://github.com/Byron/gitoxide/commit/4454c9d66c32a1de75a66639016c73edbda3bd34))
35+
- Upgrade MSRV to v1.70 ([`aea89c3`](https://github.com/Byron/gitoxide/commit/aea89c3ad52f1a800abb620e9a4701bdf904ff7d))
36+
</details>
37+
838
## 0.28.1 (2023-12-06)
939

1040
A maintenance release without user-facing changes.
@@ -13,7 +43,7 @@ A maintenance release without user-facing changes.
1343

1444
<csr-read-only-do-not-edit/>
1545

16-
- 6 commits contributed to the release over the course of 46 calendar days.
46+
- 7 commits contributed to the release over the course of 46 calendar days.
1747
- 54 days passed between releases.
1848
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1949
- 0 issues like '(#ID)' were seen in commit messages
@@ -25,6 +55,7 @@ A maintenance release without user-facing changes.
2555
<details><summary>view details</summary>
2656

2757
* **Uncategorized**
58+
- Release gix-date v0.8.1, gix-hash v0.13.2, gix-trace v0.1.4, gix-features v0.36.1, gix-actor v0.28.1, gix-validate v0.8.1, gix-object v0.39.0, gix-path v0.10.1, gix-glob v0.14.1, gix-quote v0.4.8, gix-attributes v0.20.1, gix-command v0.3.0, gix-packetline-blocking v0.17.0, gix-utils v0.1.6, gix-filter v0.7.0, gix-fs v0.8.1, gix-chunk v0.4.5, gix-commitgraph v0.22.1, gix-hashtable v0.4.1, gix-revwalk v0.10.0, gix-traverse v0.35.0, gix-worktree-stream v0.7.0, gix-archive v0.7.0, gix-config-value v0.14.1, gix-tempfile v11.0.1, gix-lock v11.0.1, gix-ref v0.39.0, gix-sec v0.10.1, gix-config v0.32.0, gix-prompt v0.8.0, gix-url v0.25.2, gix-credentials v0.22.0, gix-ignore v0.9.1, gix-bitmap v0.2.8, gix-index v0.27.0, gix-worktree v0.28.0, gix-diff v0.38.0, gix-discover v0.27.0, gix-macros v0.1.1, gix-mailmap v0.20.1, gix-negotiate v0.10.0, gix-pack v0.45.0, gix-odb v0.55.0, gix-pathspec v0.4.1, gix-packetline v0.17.0, gix-transport v0.39.0, gix-protocol v0.42.0, gix-revision v0.24.0, gix-refspec v0.20.0, gix-status v0.3.0, gix-submodule v0.6.0, gix-worktree-state v0.5.0, gix v0.56.0, gix-fsck v0.1.0, gitoxide-core v0.34.0, gitoxide v0.32.0, safety bump 27 crates ([`55d386a`](https://github.com/Byron/gitoxide/commit/55d386a2448aba1dd22c73fb63b3fd5b3a8401c9))
2859
- Prepare changelogs prior to release ([`d3dcbe5`](https://github.com/Byron/gitoxide/commit/d3dcbe5c4e3a004360d02fbfb74a8fad52f19b5e))
2960
- Upgrade to `winnow` 0.5.24 ([`abcfb65`](https://github.com/Byron/gitoxide/commit/abcfb659786425ec09eff6b644cd2ad36b7d6bc4))
3061
- Merge branch 'check-cfg' ([`5a0d93e`](https://github.com/Byron/gitoxide/commit/5a0d93e7522564d126c34ce5d569f9a385698513))

gix-archive/CHANGELOG.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ 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
9+
10+
### Chore
11+
12+
- <csr-id-aea89c3ad52f1a800abb620e9a4701bdf904ff7d/> upgrade MSRV to v1.70
13+
Our MSRV follows the one of `helix`, which in turn follows Firefox.
14+
15+
### Commit Statistics
16+
17+
<csr-read-only-do-not-edit/>
18+
19+
- 2 commits contributed to the release.
20+
- 22 days passed between releases.
21+
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
22+
- 0 issues like '(#ID)' were seen in commit messages
23+
24+
### Commit Details
25+
26+
<csr-read-only-do-not-edit/>
27+
28+
<details><summary>view details</summary>
29+
30+
* **Uncategorized**
31+
- Merge branch 'maintenance' ([`4454c9d`](https://github.com/Byron/gitoxide/commit/4454c9d66c32a1de75a66639016c73edbda3bd34))
32+
- Upgrade MSRV to v1.70 ([`aea89c3`](https://github.com/Byron/gitoxide/commit/aea89c3ad52f1a800abb620e9a4701bdf904ff7d))
33+
</details>
34+
835
## 0.7.0 (2023-12-06)
936

1037
A maintenance release without user-facing changes.
@@ -13,7 +40,7 @@ A maintenance release without user-facing changes.
1340

1441
<csr-read-only-do-not-edit/>
1542

16-
- 15 commits contributed to the release over the course of 46 calendar days.
43+
- 16 commits contributed to the release over the course of 46 calendar days.
1744
- 54 days passed between releases.
1845
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1946
- 0 issues like '(#ID)' were seen in commit messages
@@ -25,6 +52,7 @@ A maintenance release without user-facing changes.
2552
<details><summary>view details</summary>
2653

2754
* **Uncategorized**
55+
- Release gix-date v0.8.1, gix-hash v0.13.2, gix-trace v0.1.4, gix-features v0.36.1, gix-actor v0.28.1, gix-validate v0.8.1, gix-object v0.39.0, gix-path v0.10.1, gix-glob v0.14.1, gix-quote v0.4.8, gix-attributes v0.20.1, gix-command v0.3.0, gix-packetline-blocking v0.17.0, gix-utils v0.1.6, gix-filter v0.7.0, gix-fs v0.8.1, gix-chunk v0.4.5, gix-commitgraph v0.22.1, gix-hashtable v0.4.1, gix-revwalk v0.10.0, gix-traverse v0.35.0, gix-worktree-stream v0.7.0, gix-archive v0.7.0, gix-config-value v0.14.1, gix-tempfile v11.0.1, gix-lock v11.0.1, gix-ref v0.39.0, gix-sec v0.10.1, gix-config v0.32.0, gix-prompt v0.8.0, gix-url v0.25.2, gix-credentials v0.22.0, gix-ignore v0.9.1, gix-bitmap v0.2.8, gix-index v0.27.0, gix-worktree v0.28.0, gix-diff v0.38.0, gix-discover v0.27.0, gix-macros v0.1.1, gix-mailmap v0.20.1, gix-negotiate v0.10.0, gix-pack v0.45.0, gix-odb v0.55.0, gix-pathspec v0.4.1, gix-packetline v0.17.0, gix-transport v0.39.0, gix-protocol v0.42.0, gix-revision v0.24.0, gix-refspec v0.20.0, gix-status v0.3.0, gix-submodule v0.6.0, gix-worktree-state v0.5.0, gix v0.56.0, gix-fsck v0.1.0, gitoxide-core v0.34.0, gitoxide v0.32.0, safety bump 27 crates ([`55d386a`](https://github.com/Byron/gitoxide/commit/55d386a2448aba1dd22c73fb63b3fd5b3a8401c9))
2856
- Prepare changelogs prior to release ([`d3dcbe5`](https://github.com/Byron/gitoxide/commit/d3dcbe5c4e3a004360d02fbfb74a8fad52f19b5e))
2957
- Merge branch 'gix-status' ([`dfb3f18`](https://github.com/Byron/gitoxide/commit/dfb3f1821428f294f1832543ad0cf2fc883b03fb))
3058
- Adapt to changes in `gix-filter` ([`1763862`](https://github.com/Byron/gitoxide/commit/17638628586900d43d730e6ed2a0862d8e408f29))

gix-attributes/CHANGELOG.md

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,46 @@ 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
9+
10+
<csr-id-aea89c3ad52f1a800abb620e9a4701bdf904ff7d/>
11+
<csr-id-3b8384778eb96c42f38310bd969c511acde18da0/>
12+
13+
### Chore
14+
15+
- <csr-id-aea89c3ad52f1a800abb620e9a4701bdf904ff7d/> upgrade MSRV to v1.70
16+
Our MSRV follows the one of `helix`, which in turn follows Firefox.
17+
18+
### Other
19+
20+
- <csr-id-3b8384778eb96c42f38310bd969c511acde18da0/> Add a search fuzzer
21+
22+
### Commit Statistics
23+
24+
<csr-read-only-do-not-edit/>
25+
26+
- 8 commits contributed to the release over the course of 11 calendar days.
27+
- 22 days passed between releases.
28+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
29+
- 0 issues like '(#ID)' were seen in commit messages
30+
31+
### Commit Details
32+
33+
<csr-read-only-do-not-edit/>
34+
35+
<details><summary>view details</summary>
36+
37+
* **Uncategorized**
38+
- Prepare changelogs of next release ([`86e49fc`](https://github.com/Byron/gitoxide/commit/86e49fca969d97c5744d7dc6a3abc8eb522bf3b9))
39+
- Merge branch 'maintenance' ([`4454c9d`](https://github.com/Byron/gitoxide/commit/4454c9d66c32a1de75a66639016c73edbda3bd34))
40+
- Upgrade MSRV to v1.70 ([`aea89c3`](https://github.com/Byron/gitoxide/commit/aea89c3ad52f1a800abb620e9a4701bdf904ff7d))
41+
- Merge branch 'fuzz-gix-ref' ([`8ee1194`](https://github.com/Byron/gitoxide/commit/8ee119442b2ff4b846a34b57a222a6abdf6c95d8))
42+
- Let's have the latest versions of fuzzers automatically ([`5828f37`](https://github.com/Byron/gitoxide/commit/5828f3796031de8d9f50bd6536697754da0b3d8c))
43+
- Merge branch 'fuzz-gix-attribute' ([`f7adf97`](https://github.com/Byron/gitoxide/commit/f7adf97bc6aa2bf82f906c4463b1cbb3f9cddae3))
44+
- Refactor ([`1b61178`](https://github.com/Byron/gitoxide/commit/1b611787e9dfbcd0654503b432482a82a0caa236))
45+
- Add a search fuzzer ([`3b83847`](https://github.com/Byron/gitoxide/commit/3b8384778eb96c42f38310bd969c511acde18da0))
46+
</details>
47+
848
## 0.20.1 (2023-12-06)
949

1050
A maintenance release without user-facing changes.
@@ -13,7 +53,7 @@ A maintenance release without user-facing changes.
1353

1454
<csr-read-only-do-not-edit/>
1555

16-
- 9 commits contributed to the release over the course of 46 calendar days.
56+
- 10 commits contributed to the release over the course of 46 calendar days.
1757
- 54 days passed between releases.
1858
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1959
- 0 issues like '(#ID)' were seen in commit messages
@@ -25,6 +65,7 @@ A maintenance release without user-facing changes.
2565
<details><summary>view details</summary>
2666

2767
* **Uncategorized**
68+
- Release gix-date v0.8.1, gix-hash v0.13.2, gix-trace v0.1.4, gix-features v0.36.1, gix-actor v0.28.1, gix-validate v0.8.1, gix-object v0.39.0, gix-path v0.10.1, gix-glob v0.14.1, gix-quote v0.4.8, gix-attributes v0.20.1, gix-command v0.3.0, gix-packetline-blocking v0.17.0, gix-utils v0.1.6, gix-filter v0.7.0, gix-fs v0.8.1, gix-chunk v0.4.5, gix-commitgraph v0.22.1, gix-hashtable v0.4.1, gix-revwalk v0.10.0, gix-traverse v0.35.0, gix-worktree-stream v0.7.0, gix-archive v0.7.0, gix-config-value v0.14.1, gix-tempfile v11.0.1, gix-lock v11.0.1, gix-ref v0.39.0, gix-sec v0.10.1, gix-config v0.32.0, gix-prompt v0.8.0, gix-url v0.25.2, gix-credentials v0.22.0, gix-ignore v0.9.1, gix-bitmap v0.2.8, gix-index v0.27.0, gix-worktree v0.28.0, gix-diff v0.38.0, gix-discover v0.27.0, gix-macros v0.1.1, gix-mailmap v0.20.1, gix-negotiate v0.10.0, gix-pack v0.45.0, gix-odb v0.55.0, gix-pathspec v0.4.1, gix-packetline v0.17.0, gix-transport v0.39.0, gix-protocol v0.42.0, gix-revision v0.24.0, gix-refspec v0.20.0, gix-status v0.3.0, gix-submodule v0.6.0, gix-worktree-state v0.5.0, gix v0.56.0, gix-fsck v0.1.0, gitoxide-core v0.34.0, gitoxide v0.32.0, safety bump 27 crates ([`55d386a`](https://github.com/Byron/gitoxide/commit/55d386a2448aba1dd22c73fb63b3fd5b3a8401c9))
2869
- Prepare changelogs prior to release ([`d3dcbe5`](https://github.com/Byron/gitoxide/commit/d3dcbe5c4e3a004360d02fbfb74a8fad52f19b5e))
2970
- Merge branch 'gix-status' ([`dfb3f18`](https://github.com/Byron/gitoxide/commit/dfb3f1821428f294f1832543ad0cf2fc883b03fb))
3071
- More correct initialization order for new attribute search outcomes. ([`7d754cc`](https://github.com/Byron/gitoxide/commit/7d754cc7600a15acc5421206eb8d90dea432b283))

0 commit comments

Comments
 (0)