Skip to content

Commit d64f257

Browse files
committed
Release gix-actor v0.35.3, gix-path v0.10.20, gix-features v0.43.1, gix-object v0.50.1
1 parent 5e0122d commit d64f257

File tree

46 files changed

+101
-86
lines changed

Some content is hidden

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

46 files changed

+101
-86
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"]
152152
anyhow = "1.0.98"
153153

154154
gitoxide-core = { version = "^0.48.0", path = "gitoxide-core" }
155-
gix-features = { version = "^0.43.0", path = "gix-features" }
155+
gix-features = { version = "^0.43.1", path = "gix-features" }
156156
gix = { version = "^0.73.0", path = "gix", default-features = false }
157157

158158
clap = { version = "4.5.42", features = ["derive", "cargo"] }

gix-actor/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.35.3 (2025-08-03)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

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

16-
- 5 commits contributed to the release over the course of 19 calendar days.
16+
- 6 commits contributed to the release over the course of 19 calendar days.
1717
- 19 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 changelogs prior to release. ([`5e0122d`](https://github.com/GitoxideLabs/gitoxide/commit/5e0122df48392fb0ea6e16eb7b70d320b03244ca))
2829
- Merge pull request #2097 from GitoxideLabs/fix-gix-date ([`589d63e`](https://github.com/GitoxideLabs/gitoxide/commit/589d63ed21e5f2cd53ad2cac96fc387df3ea26e9))
2930
- Release gix-date v0.10.4 ([`007e3f6`](https://github.com/GitoxideLabs/gitoxide/commit/007e3f66246aaafc2374b85cbf77f89ec0b09512))
3031
- Merge pull request #2090 from GitoxideLabs/dependabot/cargo/cargo-f147714000 ([`473fe52`](https://github.com/GitoxideLabs/gitoxide/commit/473fe522e84569f77bf38294a412f0d13fa54d63))

gix-actor/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-actor"
5-
version = "0.35.2"
5+
version = "0.35.3"
66
description = "A way to identify git actors"
77
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
88
repository = "https://github.com/GitoxideLabs/gitoxide"

gix-archive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ zip = ["dep:zip"]
2828

2929
[dependencies]
3030
gix-worktree-stream = { version = "^0.22.0", path = "../gix-worktree-stream" }
31-
gix-object = { version = "^0.50.0", path = "../gix-object" }
32-
gix-path = { version = "^0.10.19", path = "../gix-path", optional = true }
31+
gix-object = { version = "^0.50.1", path = "../gix-object" }
32+
gix-path = { version = "^0.10.20", path = "../gix-path", optional = true }
3333
gix-date = { version = "^0.10.4", path = "../gix-date" }
3434

3535
flate2 = { version = "1.1.1", optional = true, default-features = false, features = ["zlib-rs"] }

gix-attributes/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", "kstring/serde"]
2020

2121
[dependencies]
22-
gix-path = { version = "^0.10.19", path = "../gix-path" }
22+
gix-path = { version = "^0.10.20", path = "../gix-path" }
2323
gix-quote = { version = "^0.6.0", path = "../gix-quote" }
2424
gix-glob = { version = "^0.21.0", path = "../gix-glob" }
2525
gix-trace = { version = "^0.1.13", path = "../gix-trace" }

gix-blame/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk" }
1616
gix-trace = { version = "^0.1.13", path = "../gix-trace" }
1717
gix-date = { version = "^0.10.4", path = "../gix-date" }
1818
gix-diff = { version = "^0.53.0", path = "../gix-diff", default-features = false, features = ["blob"] }
19-
gix-object = { version = "^0.50.0", path = "../gix-object" }
19+
gix-object = { version = "^0.50.1", path = "../gix-object" }
2020
gix-hash = { version = "^0.19.0", path = "../gix-hash" }
2121
gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
2222
gix-traverse = { version = "^0.47.0", path = "../gix-traverse" }

gix-command/Cargo.toml

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

1717
[dependencies]
1818
gix-trace = { version = "^0.1.13", path = "../gix-trace" }
19-
gix-path = { version = "^0.10.19", path = "../gix-path" }
19+
gix-path = { version = "^0.10.20", 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

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"]
2020

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

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

gix-config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ autotests = false
1919
serde = ["dep:serde", "bstr/serde", "gix-sec/serde", "gix-ref/serde", "gix-glob/serde", "gix-config-value/serde"]
2020

2121
[dependencies]
22-
gix-features = { version = "^0.43.0", path = "../gix-features" }
22+
gix-features = { version = "^0.43.1", path = "../gix-features" }
2323
gix-config-value = { version = "^0.15.1", path = "../gix-config-value" }
24-
gix-path = { version = "^0.10.19", path = "../gix-path" }
24+
gix-path = { version = "^0.10.20", path = "../gix-path" }
2525
gix-sec = { version = "^0.12.0", path = "../gix-sec" }
2626
gix-ref = { version = "^0.53.0", path = "../gix-ref" }
2727
gix-glob = { version = "^0.21.0", path = "../gix-glob" }

0 commit comments

Comments
 (0)