Skip to content

Commit 11b9c71

Browse files
committed
Release gix-index v0.23.1
1 parent 6a8314b commit 11b9c71

File tree

7 files changed

+42
-15
lines changed

7 files changed

+42
-15
lines changed

Cargo.lock

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

gix-index/CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ 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.23.1 (2023-09-01)
9+
10+
### Bug Fixes
11+
12+
- <csr-id-6a8314bb99099e2a3f5364a5761a5254aa36393a/> `prefixed_entries_range()` now works correctly with directory prefixes.
13+
Previously, not all directory prefixes would work as expected due to incorrect
14+
search criteria.
15+
16+
### Commit Statistics
17+
18+
<csr-read-only-do-not-edit/>
19+
20+
- 1 commit contributed to the release.
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+
- `prefixed_entries_range()` now works correctly with directory prefixes. ([`6a8314b`](https://github.com/Byron/gitoxide/commit/6a8314bb99099e2a3f5364a5761a5254aa36393a))
32+
</details>
33+
834
## 0.23.0 (2023-09-01)
935

1036
### New Features
@@ -42,7 +68,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4268

4369
<csr-read-only-do-not-edit/>
4470

45-
- 9 commits contributed to the release over the course of 9 calendar days.
71+
- 10 commits contributed to the release over the course of 9 calendar days.
4672
- 9 days passed between releases.
4773
- 6 commits were understood as [conventional](https://www.conventionalcommits.org).
4874
- 0 issues like '(#ID)' were seen in commit messages
@@ -54,6 +80,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5480
<details><summary>view details</summary>
5581

5682
* **Uncategorized**
83+
- Release gix-date v0.7.4, gix-index v0.23.0, safety bump 5 crates ([`3be2b1c`](https://github.com/Byron/gitoxide/commit/3be2b1ccfe30eeae45711c64b88efc522a2b51b7))
5784
- Prepare `gix-index` release ([`6fdbc66`](https://github.com/Byron/gitoxide/commit/6fdbc667c20f10734390341b435c15c73b7cd227))
5885
- Add `State::prefixed_range()` to obtain a range of entries matching a prefix. ([`cfbfa43`](https://github.com/Byron/gitoxide/commit/cfbfa43069c8d82fbd74b8296f63fc050a5ba02a))
5986
- Add `State::remove_entries()` and `entry_range()`. ([`8b689c2`](https://github.com/Byron/gitoxide/commit/8b689c222668b0c35c508f1907b03cbd4ba09bba))

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.23.0"
3+
version = "0.23.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-status/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ autotests = false
1414
doctest = false
1515

1616
[dependencies]
17-
gix-index = { version = "^0.23.0", path = "../gix-index" }
17+
gix-index = { version = "^0.23.1", path = "../gix-index" }
1818
gix-fs = { version = "^0.5.0", path = "../gix-fs" }
1919
gix-hash = { version = "^0.12.0", path = "../gix-hash" }
2020
gix-object = { version = "^0.35.0", path = "../gix-object" }

gix-worktree-state/Cargo.toml

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

1616
[dependencies]
1717
gix-worktree = { version = "^0.25.0", path = "../gix-worktree" }
18-
gix-index = { version = "^0.23.0", path = "../gix-index" }
18+
gix-index = { version = "^0.23.1", path = "../gix-index" }
1919
gix-fs = { version = "^0.5.0", path = "../gix-fs" }
2020
gix-hash = { version = "^0.12.0", path = "../gix-hash" }
2121
gix-object = { version = "^0.35.0", path = "../gix-object" }

gix-worktree/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ doctest = false
1818
serde = [ "dep:serde", "bstr/serde", "gix-index/serde", "gix-hash/serde", "gix-object/serde", "gix-attributes/serde", "gix-ignore/serde" ]
1919

2020
[dependencies]
21-
gix-index = { version = "^0.23.0", path = "../gix-index" }
21+
gix-index = { version = "^0.23.1", path = "../gix-index" }
2222
gix-fs = { version = "^0.5.0", path = "../gix-fs" }
2323
gix-hash = { version = "^0.12.0", path = "../gix-hash" }
2424
gix-object = { version = "^0.35.0", path = "../gix-object" }

gix/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ gix-ignore = { version = "^0.6.0", path = "../gix-ignore" }
160160
gix-glob = { version = "^0.11.0", path = "../gix-glob" }
161161
gix-credentials = { version = "^0.18.0", path = "../gix-credentials" }
162162
gix-prompt = { version = "^0.6.0", path = "../gix-prompt" }
163-
gix-index = { version = "^0.23.0", path = "../gix-index" }
163+
gix-index = { version = "^0.23.1", path = "../gix-index" }
164164
gix-worktree = { version = "^0.25.0", path = "../gix-worktree" }
165165
gix-worktree-state = { version = "^0.2.0", path = "../gix-worktree-state" }
166166
gix-hashtable = { version = "^0.3.0", path = "../gix-hashtable" }

0 commit comments

Comments
 (0)