Skip to content

Commit 79ba9d0

Browse files
committed
Release gix-actor v0.35.4, gix-fs v0.16.1, gix-object v0.50.2, gix-ref v0.53.1
1 parent 5315180 commit 79ba9d0

File tree

33 files changed

+58
-58
lines changed

33 files changed

+58
-58
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.

gix-actor/CHANGELOG.md

Lines changed: 2 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.35.4 (2025-08-13)
99

1010
A maintenance release without user-facing changes.
1111

@@ -25,7 +25,7 @@ A maintenance release without user-facing changes.
2525
<details><summary>view details</summary>
2626

2727
* **Uncategorized**
28-
- Update changelogs prior to `gix-ref` release ([`dc5bfa3`](https://github.com/GitoxideLabs/gitoxide/commit/dc5bfa3157dd3deb6edf1e6253fa5ac8ca6cde55))
28+
- Update changelogs prior to `gix-ref` release ([`5315180`](https://github.com/GitoxideLabs/gitoxide/commit/53151807ec82ce3fbe1838c0885a4f9b71b82f23))
2929
- Merge pull request #2110 from jpgrayson/fix/gix-date-parse-raw ([`651f9fa`](https://github.com/GitoxideLabs/gitoxide/commit/651f9fa560d5df7260a45068b8440f72820a6ffd))
3030
- Release gix-date v0.10.5 ([`4289ae6`](https://github.com/GitoxideLabs/gitoxide/commit/4289ae635d94d713d247eaf6f87d0ba91a1a3826))
3131
- Merge pull request #2100 from GitoxideLabs/release ([`202bc6d`](https://github.com/GitoxideLabs/gitoxide/commit/202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5))

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.3"
5+
version = "0.35.4"
66
description = "A way to identify git actors"
77
authors = ["Sebastian Thiel <[email protected]>"]
88
repository = "https://github.com/GitoxideLabs/gitoxide"

gix-archive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ zip = ["dep:zip"]
2828

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

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.5", path = "../gix-date" }
1818
gix-diff = { version = "^0.53.0", path = "../gix-diff", default-features = false, features = ["blob"] }
19-
gix-object = { version = "^0.50.1", path = "../gix-object" }
19+
gix-object = { version = "^0.50.2", 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-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ gix-features = { version = "^0.43.1", path = "../gix-features" }
2323
gix-config-value = { version = "^0.15.1", path = "../gix-config-value" }
2424
gix-path = { version = "^0.10.20", path = "../gix-path" }
2525
gix-sec = { version = "^0.12.0", path = "../gix-sec" }
26-
gix-ref = { version = "^0.53.0", path = "../gix-ref" }
26+
gix-ref = { version = "^0.53.1", path = "../gix-ref" }
2727
gix-glob = { version = "^0.21.0", path = "../gix-glob" }
2828

2929
winnow = { version = "0.7.12", features = ["simd"] }

gix-diff/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ gix-index = { version = "^0.41.0", path = "../gix-index", optional = true }
3131
gix-pathspec = { version = "^0.12.0", path = "../gix-pathspec", optional = true }
3232
gix-attributes = { version = "^0.27.0", path = "../gix-attributes", optional = true }
3333
gix-hash = { version = "^0.19.0", path = "../gix-hash" }
34-
gix-object = { version = "^0.50.1", path = "../gix-object" }
34+
gix-object = { version = "^0.50.2", path = "../gix-object" }
3535
gix-filter = { version = "^0.20.0", path = "../gix-filter", optional = true }
3636
gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false, features = ["attributes"], optional = true }
3737
gix-command = { version = "^0.6.2", path = "../gix-command", optional = true }
3838
gix-path = { version = "^0.10.20", path = "../gix-path", optional = true }
39-
gix-fs = { version = "^0.16.0", path = "../gix-fs", optional = true }
39+
gix-fs = { version = "^0.16.1", path = "../gix-fs", optional = true }
4040
gix-tempfile = { version = "^18.0.0", path = "../gix-tempfile", optional = true }
4141
gix-trace = { version = "^0.1.13", path = "../gix-trace", optional = true }
4242
gix-traverse = { version = "^0.47.0", path = "../gix-traverse", optional = true }

gix-dir/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ test = false
1818
gix-trace = { version = "^0.1.13", path = "../gix-trace" }
1919
gix-index = { version = "^0.41.0", path = "../gix-index" }
2020
gix-discover = { version = "^0.41.0", path = "../gix-discover" }
21-
gix-fs = { version = "^0.16.0", path = "../gix-fs" }
21+
gix-fs = { version = "^0.16.1", path = "../gix-fs" }
2222
gix-path = { version = "^0.10.20", path = "../gix-path" }
2323
gix-pathspec = { version = "^0.12.0", path = "../gix-pathspec" }
2424
gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false }
25-
gix-object = { version = "^0.50.1", path = "../gix-object" }
25+
gix-object = { version = "^0.50.2", path = "../gix-object" }
2626
gix-ignore = { version = "^0.16.0", path = "../gix-ignore" }
2727
gix-utils = { version = "^0.3.0", path = "../gix-utils", features = ["bstr"] }
2828

gix-discover/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ doctest = false
1717
[dependencies]
1818
gix-sec = { version = "^0.12.0", path = "../gix-sec" }
1919
gix-path = { version = "^0.10.20", path = "../gix-path" }
20-
gix-ref = { version = "^0.53.0", path = "../gix-ref" }
20+
gix-ref = { version = "^0.53.1", path = "../gix-ref" }
2121
gix-hash = { version = "^0.19.0", path = "../gix-hash" }
22-
gix-fs = { version = "^0.16.0", path = "../gix-fs" }
22+
gix-fs = { version = "^0.16.1", path = "../gix-fs" }
2323

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

gix-filter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ doctest = false
1717
[dependencies]
1818
gix-hash = { version = "^0.19.0", path = "../gix-hash" }
1919
gix-trace = { version = "^0.1.13", path = "../gix-trace" }
20-
gix-object = { version = "^0.50.1", path = "../gix-object" }
20+
gix-object = { version = "^0.50.2", path = "../gix-object" }
2121
gix-command = { version = "^0.6.2", path = "../gix-command" }
2222
gix-quote = { version = "^0.6.0", path = "../gix-quote" }
2323
gix-utils = { version = "^0.3.0", path = "../gix-utils" }

0 commit comments

Comments
 (0)