1
1
mirror of https://github.com/Byron/gitoxide synced 2025-10-06 01:52:40 +02:00

Release gix-actor v0.35.4, gix-fs v0.16.1, gix-object v0.50.2, gix-ref v0.53.1

This commit is contained in:
Sebastian Thiel
2025-08-13 05:38:16 +02:00
parent 53151807ec
commit 79ba9d009c
33 changed files with 58 additions and 58 deletions

8
Cargo.lock generated
View File

@@ -1437,7 +1437,7 @@ dependencies = [
[[package]] [[package]]
name = "gix-actor" name = "gix-actor"
version = "0.35.3" version = "0.35.4"
dependencies = [ dependencies = [
"bstr", "bstr",
"document-features", "document-features",
@@ -1782,7 +1782,7 @@ dependencies = [
[[package]] [[package]]
name = "gix-fs" name = "gix-fs"
version = "0.16.0" version = "0.16.1"
dependencies = [ dependencies = [
"bstr", "bstr",
"crossbeam-channel", "crossbeam-channel",
@@ -1990,7 +1990,7 @@ version = "0.0.0"
[[package]] [[package]]
name = "gix-object" name = "gix-object"
version = "0.50.1" version = "0.50.2"
dependencies = [ dependencies = [
"bstr", "bstr",
"criterion", "criterion",
@@ -2218,7 +2218,7 @@ version = "0.0.0"
[[package]] [[package]]
name = "gix-ref" name = "gix-ref"
version = "0.53.0" version = "0.53.1"
dependencies = [ dependencies = [
"document-features", "document-features",
"gix-actor", "gix-actor",

View File

@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased ## 0.35.4 (2025-08-13)
A maintenance release without user-facing changes. A maintenance release without user-facing changes.
@@ -25,7 +25,7 @@ A maintenance release without user-facing changes.
<details><summary>view details</summary> <details><summary>view details</summary>
* **Uncategorized** * **Uncategorized**
- Update changelogs prior to `gix-ref` release ([`dc5bfa3`](https://github.com/GitoxideLabs/gitoxide/commit/dc5bfa3157dd3deb6edf1e6253fa5ac8ca6cde55)) - Update changelogs prior to `gix-ref` release ([`5315180`](https://github.com/GitoxideLabs/gitoxide/commit/53151807ec82ce3fbe1838c0885a4f9b71b82f23))
- Merge pull request #2110 from jpgrayson/fix/gix-date-parse-raw ([`651f9fa`](https://github.com/GitoxideLabs/gitoxide/commit/651f9fa560d5df7260a45068b8440f72820a6ffd)) - Merge pull request #2110 from jpgrayson/fix/gix-date-parse-raw ([`651f9fa`](https://github.com/GitoxideLabs/gitoxide/commit/651f9fa560d5df7260a45068b8440f72820a6ffd))
- Release gix-date v0.10.5 ([`4289ae6`](https://github.com/GitoxideLabs/gitoxide/commit/4289ae635d94d713d247eaf6f87d0ba91a1a3826)) - Release gix-date v0.10.5 ([`4289ae6`](https://github.com/GitoxideLabs/gitoxide/commit/4289ae635d94d713d247eaf6f87d0ba91a1a3826))
- Merge pull request #2100 from GitoxideLabs/release ([`202bc6d`](https://github.com/GitoxideLabs/gitoxide/commit/202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5)) - Merge pull request #2100 from GitoxideLabs/release ([`202bc6d`](https://github.com/GitoxideLabs/gitoxide/commit/202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5))

View File

@@ -2,7 +2,7 @@ lints.workspace = true
[package] [package]
name = "gix-actor" name = "gix-actor"
version = "0.35.3" version = "0.35.4"
description = "A way to identify git actors" description = "A way to identify git actors"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"] authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
repository = "https://github.com/GitoxideLabs/gitoxide" repository = "https://github.com/GitoxideLabs/gitoxide"

View File

@@ -28,7 +28,7 @@ zip = ["dep:zip"]
[dependencies] [dependencies]
gix-worktree-stream = { version = "^0.22.0", path = "../gix-worktree-stream" } gix-worktree-stream = { version = "^0.22.0", path = "../gix-worktree-stream" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-path = { version = "^0.10.20", path = "../gix-path", optional = true } gix-path = { version = "^0.10.20", path = "../gix-path", optional = true }
gix-date = { version = "^0.10.5", path = "../gix-date" } gix-date = { version = "^0.10.5", path = "../gix-date" }

View File

@@ -16,7 +16,7 @@ gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk" }
gix-trace = { version = "^0.1.13", path = "../gix-trace" } gix-trace = { version = "^0.1.13", path = "../gix-trace" }
gix-date = { version = "^0.10.5", path = "../gix-date" } gix-date = { version = "^0.10.5", path = "../gix-date" }
gix-diff = { version = "^0.53.0", path = "../gix-diff", default-features = false, features = ["blob"] } gix-diff = { version = "^0.53.0", path = "../gix-diff", default-features = false, features = ["blob"] }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false, features = ["attributes"] } gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
gix-traverse = { version = "^0.47.0", path = "../gix-traverse" } gix-traverse = { version = "^0.47.0", path = "../gix-traverse" }

View File

@@ -23,7 +23,7 @@ gix-features = { version = "^0.43.1", path = "../gix-features" }
gix-config-value = { version = "^0.15.1", path = "../gix-config-value" } gix-config-value = { version = "^0.15.1", path = "../gix-config-value" }
gix-path = { version = "^0.10.20", path = "../gix-path" } gix-path = { version = "^0.10.20", path = "../gix-path" }
gix-sec = { version = "^0.12.0", path = "../gix-sec" } gix-sec = { version = "^0.12.0", path = "../gix-sec" }
gix-ref = { version = "^0.53.0", path = "../gix-ref" } gix-ref = { version = "^0.53.1", path = "../gix-ref" }
gix-glob = { version = "^0.21.0", path = "../gix-glob" } gix-glob = { version = "^0.21.0", path = "../gix-glob" }
winnow = { version = "0.7.12", features = ["simd"] } winnow = { version = "0.7.12", features = ["simd"] }

View File

@@ -31,12 +31,12 @@ gix-index = { version = "^0.41.0", path = "../gix-index", optional = true }
gix-pathspec = { version = "^0.12.0", path = "../gix-pathspec", optional = true } gix-pathspec = { version = "^0.12.0", path = "../gix-pathspec", optional = true }
gix-attributes = { version = "^0.27.0", path = "../gix-attributes", optional = true } gix-attributes = { version = "^0.27.0", path = "../gix-attributes", optional = true }
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-filter = { version = "^0.20.0", path = "../gix-filter", optional = true } gix-filter = { version = "^0.20.0", path = "../gix-filter", optional = true }
gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false, features = ["attributes"], optional = true } gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false, features = ["attributes"], optional = true }
gix-command = { version = "^0.6.2", path = "../gix-command", optional = true } gix-command = { version = "^0.6.2", path = "../gix-command", optional = true }
gix-path = { version = "^0.10.20", path = "../gix-path", optional = true } gix-path = { version = "^0.10.20", path = "../gix-path", optional = true }
gix-fs = { version = "^0.16.0", path = "../gix-fs", optional = true } gix-fs = { version = "^0.16.1", path = "../gix-fs", optional = true }
gix-tempfile = { version = "^18.0.0", path = "../gix-tempfile", optional = true } gix-tempfile = { version = "^18.0.0", path = "../gix-tempfile", optional = true }
gix-trace = { version = "^0.1.13", path = "../gix-trace", optional = true } gix-trace = { version = "^0.1.13", path = "../gix-trace", optional = true }
gix-traverse = { version = "^0.47.0", path = "../gix-traverse", optional = true } gix-traverse = { version = "^0.47.0", path = "../gix-traverse", optional = true }

View File

@@ -18,11 +18,11 @@ test = false
gix-trace = { version = "^0.1.13", path = "../gix-trace" } gix-trace = { version = "^0.1.13", path = "../gix-trace" }
gix-index = { version = "^0.41.0", path = "../gix-index" } gix-index = { version = "^0.41.0", path = "../gix-index" }
gix-discover = { version = "^0.41.0", path = "../gix-discover" } gix-discover = { version = "^0.41.0", path = "../gix-discover" }
gix-fs = { version = "^0.16.0", path = "../gix-fs" } gix-fs = { version = "^0.16.1", path = "../gix-fs" }
gix-path = { version = "^0.10.20", path = "../gix-path" } gix-path = { version = "^0.10.20", path = "../gix-path" }
gix-pathspec = { version = "^0.12.0", path = "../gix-pathspec" } gix-pathspec = { version = "^0.12.0", path = "../gix-pathspec" }
gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false } gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-ignore = { version = "^0.16.0", path = "../gix-ignore" } gix-ignore = { version = "^0.16.0", path = "../gix-ignore" }
gix-utils = { version = "^0.3.0", path = "../gix-utils", features = ["bstr"] } gix-utils = { version = "^0.3.0", path = "../gix-utils", features = ["bstr"] }

View File

@@ -17,9 +17,9 @@ doctest = false
[dependencies] [dependencies]
gix-sec = { version = "^0.12.0", path = "../gix-sec" } gix-sec = { version = "^0.12.0", path = "../gix-sec" }
gix-path = { version = "^0.10.20", path = "../gix-path" } gix-path = { version = "^0.10.20", path = "../gix-path" }
gix-ref = { version = "^0.53.0", path = "../gix-ref" } gix-ref = { version = "^0.53.1", path = "../gix-ref" }
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-fs = { version = "^0.16.0", path = "../gix-fs" } gix-fs = { version = "^0.16.1", path = "../gix-fs" }
bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] } bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }
thiserror = "2.0.0" thiserror = "2.0.0"

View File

@@ -17,7 +17,7 @@ doctest = false
[dependencies] [dependencies]
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-trace = { version = "^0.1.13", path = "../gix-trace" } gix-trace = { version = "^0.1.13", path = "../gix-trace" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-command = { version = "^0.6.2", path = "../gix-command" } gix-command = { version = "^0.6.2", path = "../gix-command" }
gix-quote = { version = "^0.6.0", path = "../gix-quote" } gix-quote = { version = "^0.6.0", path = "../gix-quote" }
gix-utils = { version = "^0.3.0", path = "../gix-utils" } gix-utils = { version = "^0.3.0", path = "../gix-utils" }

View File

@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased ## 0.16.1 (2025-08-13)
A maintenance release without user-facing changes. A maintenance release without user-facing changes.
@@ -25,7 +25,7 @@ A maintenance release without user-facing changes.
<details><summary>view details</summary> <details><summary>view details</summary>
* **Uncategorized** * **Uncategorized**
- Update changelogs prior to `gix-ref` release ([`b3dfeca`](https://github.com/GitoxideLabs/gitoxide/commit/b3dfeca41eaee931f2d1ca43419fcc3fd437cc86)) - Update changelogs prior to `gix-ref` release ([`5315180`](https://github.com/GitoxideLabs/gitoxide/commit/53151807ec82ce3fbe1838c0885a4f9b71b82f23))
- Merge pull request #2100 from GitoxideLabs/release ([`202bc6d`](https://github.com/GitoxideLabs/gitoxide/commit/202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5)) - Merge pull request #2100 from GitoxideLabs/release ([`202bc6d`](https://github.com/GitoxideLabs/gitoxide/commit/202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5))
- Release gix-actor v0.35.3, gix-path v0.10.20, gix-features v0.43.1, gix-object v0.50.1 ([`d64f257`](https://github.com/GitoxideLabs/gitoxide/commit/d64f257951754ea70b0179b83f76de957b712211)) - Release gix-actor v0.35.3, gix-path v0.10.20, gix-features v0.43.1, gix-object v0.50.1 ([`d64f257`](https://github.com/GitoxideLabs/gitoxide/commit/d64f257951754ea70b0179b83f76de957b712211))
- Merge pull request #2075 from GitoxideLabs/improvements ([`784c046`](https://github.com/GitoxideLabs/gitoxide/commit/784c0465bf87011fe7dbf71a590d3f9e6c8696a8)) - Merge pull request #2075 from GitoxideLabs/improvements ([`784c046`](https://github.com/GitoxideLabs/gitoxide/commit/784c0465bf87011fe7dbf71a590d3f9e6c8696a8))

View File

@@ -2,7 +2,7 @@ lints.workspace = true
[package] [package]
name = "gix-fs" name = "gix-fs"
version = "0.16.0" version = "0.16.1"
repository = "https://github.com/GitoxideLabs/gitoxide" repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
description = "A crate providing file system specific utilities to `gitoxide`" description = "A crate providing file system specific utilities to `gitoxide`"

View File

@@ -17,7 +17,7 @@ doctest = false
[dependencies] [dependencies]
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable" } gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
[dev-dependencies] [dev-dependencies]
gix-odb = { path = "../gix-odb" } gix-odb = { path = "../gix-odb" }

View File

@@ -27,11 +27,11 @@ gix-features = { version = "^0.43.1", path = "../gix-features", features = [
] } ] }
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-bitmap = { version = "^0.2.14", path = "../gix-bitmap" } gix-bitmap = { version = "^0.2.14", path = "../gix-bitmap" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-validate = { version = "^0.10.0", path = "../gix-validate" } gix-validate = { version = "^0.10.0", path = "../gix-validate" }
gix-traverse = { version = "^0.47.0", path = "../gix-traverse" } gix-traverse = { version = "^0.47.0", path = "../gix-traverse" }
gix-lock = { version = "^18.0.0", path = "../gix-lock" } gix-lock = { version = "^18.0.0", path = "../gix-lock" }
gix-fs = { version = "^0.16.0", path = "../gix-fs" } gix-fs = { version = "^0.16.1", path = "../gix-fs" }
gix-utils = { version = "^0.3.0", path = "../gix-utils" } gix-utils = { version = "^0.3.0", path = "../gix-utils" }
hashbrown = "0.15.4" hashbrown = "0.15.4"

View File

@@ -19,7 +19,7 @@ doctest = false
serde = ["dep:serde", "bstr/serde", "gix-actor/serde"] serde = ["dep:serde", "bstr/serde", "gix-actor/serde"]
[dependencies] [dependencies]
gix-actor = { version = "^0.35.3", path = "../gix-actor" } gix-actor = { version = "^0.35.4", path = "../gix-actor" }
gix-date = { version = "^0.10.5", path = "../gix-date" } gix-date = { version = "^0.10.5", path = "../gix-date" }
bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] } bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }
thiserror = "2.0.0" thiserror = "2.0.0"

View File

@@ -20,12 +20,12 @@ serde = ["dep:serde", "gix-hash/serde", "gix-object/serde"]
[dependencies] [dependencies]
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-filter = { version = "^0.20.0", path = "../gix-filter" } gix-filter = { version = "^0.20.0", path = "../gix-filter" }
gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false, features = ["attributes"] } gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
gix-command = { version = "^0.6.2", path = "../gix-command" } gix-command = { version = "^0.6.2", path = "../gix-command" }
gix-path = { version = "^0.10.20", path = "../gix-path" } gix-path = { version = "^0.10.20", path = "../gix-path" }
gix-fs = { version = "^0.16.0", path = "../gix-fs" } gix-fs = { version = "^0.16.1", path = "../gix-fs" }
gix-tempfile = { version = "^18.0.0", path = "../gix-tempfile" } gix-tempfile = { version = "^18.0.0", path = "../gix-tempfile" }
gix-trace = { version = "^0.1.13", path = "../gix-trace" } gix-trace = { version = "^0.1.13", path = "../gix-trace" }
gix-quote = { version = "^0.6.0", path = "../gix-quote" } gix-quote = { version = "^0.6.0", path = "../gix-quote" }

View File

@@ -17,7 +17,7 @@ test = false
[dependencies] [dependencies]
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-date = { version = "^0.10.5", path = "../gix-date" } gix-date = { version = "^0.10.5", path = "../gix-date" }
gix-commitgraph = { version = "^0.29.0", path = "../gix-commitgraph" } gix-commitgraph = { version = "^0.29.0", path = "../gix-commitgraph" }
gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk" } gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk" }

View File

@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased ## 0.50.2 (2025-08-13)
A maintenance release without user-facing changes. A maintenance release without user-facing changes.
@@ -25,7 +25,7 @@ A maintenance release without user-facing changes.
<details><summary>view details</summary> <details><summary>view details</summary>
* **Uncategorized** * **Uncategorized**
- Update changelogs prior to `gix-ref` release ([`dc5bfa3`](https://github.com/GitoxideLabs/gitoxide/commit/dc5bfa3157dd3deb6edf1e6253fa5ac8ca6cde55)) - Update changelogs prior to `gix-ref` release ([`5315180`](https://github.com/GitoxideLabs/gitoxide/commit/53151807ec82ce3fbe1838c0885a4f9b71b82f23))
- Merge pull request #2110 from jpgrayson/fix/gix-date-parse-raw ([`651f9fa`](https://github.com/GitoxideLabs/gitoxide/commit/651f9fa560d5df7260a45068b8440f72820a6ffd)) - Merge pull request #2110 from jpgrayson/fix/gix-date-parse-raw ([`651f9fa`](https://github.com/GitoxideLabs/gitoxide/commit/651f9fa560d5df7260a45068b8440f72820a6ffd))
- Release gix-date v0.10.5 ([`4289ae6`](https://github.com/GitoxideLabs/gitoxide/commit/4289ae635d94d713d247eaf6f87d0ba91a1a3826)) - Release gix-date v0.10.5 ([`4289ae6`](https://github.com/GitoxideLabs/gitoxide/commit/4289ae635d94d713d247eaf6f87d0ba91a1a3826))
- Merge pull request #2100 from GitoxideLabs/release ([`202bc6d`](https://github.com/GitoxideLabs/gitoxide/commit/202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5)) - Merge pull request #2100 from GitoxideLabs/release ([`202bc6d`](https://github.com/GitoxideLabs/gitoxide/commit/202bc6da79854d1fb6bb32b9c6bb2a6f882c77f5))

View File

@@ -2,7 +2,7 @@ lints.workspace = true
[package] [package]
name = "gix-object" name = "gix-object"
version = "0.50.1" version = "0.50.2"
description = "Immutable and mutable git objects with decoding and encoding support" description = "Immutable and mutable git objects with decoding and encoding support"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"] authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
repository = "https://github.com/GitoxideLabs/gitoxide" repository = "https://github.com/GitoxideLabs/gitoxide"
@@ -47,7 +47,7 @@ gix-features = { version = "^0.43.1", path = "../gix-features", features = [
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable" } gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable" }
gix-validate = { version = "^0.10.0", path = "../gix-validate" } gix-validate = { version = "^0.10.0", path = "../gix-validate" }
gix-actor = { version = "^0.35.3", path = "../gix-actor" } gix-actor = { version = "^0.35.4", path = "../gix-actor" }
gix-date = { version = "^0.10.5", path = "../gix-date" } gix-date = { version = "^0.10.5", path = "../gix-date" }
gix-path = { version = "^0.10.20", path = "../gix-path" } gix-path = { version = "^0.10.20", path = "../gix-path" }
gix-utils = { version = "^0.3.0", path = "../gix-utils" } gix-utils = { version = "^0.3.0", path = "../gix-utils" }

View File

@@ -26,9 +26,9 @@ gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-date = { version = "^0.10.5", path = "../gix-date" } gix-date = { version = "^0.10.5", path = "../gix-date" }
gix-path = { version = "^0.10.20", path = "../gix-path" } gix-path = { version = "^0.10.20", path = "../gix-path" }
gix-quote = { version = "^0.6.0", path = "../gix-quote" } gix-quote = { version = "^0.6.0", path = "../gix-quote" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-pack = { version = "^0.60.0", path = "../gix-pack", default-features = false } gix-pack = { version = "^0.60.0", path = "../gix-pack", default-features = false }
gix-fs = { version = "^0.16.0", path = "../gix-fs" } gix-fs = { version = "^0.16.1", path = "../gix-fs" }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] } serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
tempfile = "3.20.0" tempfile = "3.20.0"

View File

@@ -38,7 +38,7 @@ gix-features = { version = "^0.43.1", path = "../gix-features", features = ["crc
gix-path = { version = "^0.10.20", path = "../gix-path" } gix-path = { version = "^0.10.20", path = "../gix-path" }
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-chunk = { version = "^0.4.11", path = "../gix-chunk" } gix-chunk = { version = "^0.4.11", path = "../gix-chunk" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable", optional = true } gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable", optional = true }
# for streaming of packs (input, output) # for streaming of packs (input, output)

View File

@@ -76,11 +76,11 @@ gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-shallow = { version = "^0.5.0", path = "../gix-shallow" } gix-shallow = { version = "^0.5.0", path = "../gix-shallow" }
gix-date = { version = "^0.10.5", path = "../gix-date" } gix-date = { version = "^0.10.5", path = "../gix-date" }
gix-utils = { version = "^0.3.0", path = "../gix-utils" } gix-utils = { version = "^0.3.0", path = "../gix-utils" }
gix-ref = { version = "^0.53.0", path = "../gix-ref" } gix-ref = { version = "^0.53.1", path = "../gix-ref" }
gix-trace = { version = "^0.1.13", path = "../gix-trace", optional = true } gix-trace = { version = "^0.1.13", path = "../gix-trace", optional = true }
gix-negotiate = { version = "^0.21.0", path = "../gix-negotiate", optional = true } gix-negotiate = { version = "^0.21.0", path = "../gix-negotiate", optional = true }
gix-object = { version = "^0.50.1", path = "../gix-object", optional = true } gix-object = { version = "^0.50.2", path = "../gix-object", optional = true }
gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk", optional = true } gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk", optional = true }
gix-credentials = { version = "^0.30.0", path = "../gix-credentials", optional = true } gix-credentials = { version = "^0.30.0", path = "../gix-credentials", optional = true }
gix-refspec = { version = "^0.31.0", path = "../gix-refspec", optional = true } gix-refspec = { version = "^0.31.0", path = "../gix-refspec", optional = true }

View File

@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased ## 0.53.1 (2025-08-13)
This release adjusts writes to lose ref files so they will contain newlines after the hash for compliance with Git. This release adjusts writes to lose ref files so they will contain newlines after the hash for compliance with Git.
@@ -38,7 +38,7 @@ This release adjusts writes to lose ref files so they will contain newlines afte
<details><summary>view details</summary> <details><summary>view details</summary>
* **Uncategorized** * **Uncategorized**
- Update changelogs prior to `gix-ref` release ([`b3dfeca`](https://github.com/GitoxideLabs/gitoxide/commit/b3dfeca41eaee931f2d1ca43419fcc3fd437cc86)) - Update changelogs prior to `gix-ref` release ([`5315180`](https://github.com/GitoxideLabs/gitoxide/commit/53151807ec82ce3fbe1838c0885a4f9b71b82f23))
- Merge pull request #2111 from handlerug/patch-ref-storage-newline ([`edcfdc2`](https://github.com/GitoxideLabs/gitoxide/commit/edcfdc2fe629a1b691c8f39c5b9e36d8254dea6f)) - Merge pull request #2111 from handlerug/patch-ref-storage-newline ([`edcfdc2`](https://github.com/GitoxideLabs/gitoxide/commit/edcfdc2fe629a1b691c8f39c5b9e36d8254dea6f))
- Persist object refs on disk with a trailing newline ([`6c0cc71`](https://github.com/GitoxideLabs/gitoxide/commit/6c0cc7165609b056850f15ee464863dae1b99a97)) - Persist object refs on disk with a trailing newline ([`6c0cc71`](https://github.com/GitoxideLabs/gitoxide/commit/6c0cc7165609b056850f15ee464863dae1b99a97))
- Merge pull request #2105 from jalil-salame/fix-2103 ([`04a18f3`](https://github.com/GitoxideLabs/gitoxide/commit/04a18f3a4520dd6f49b5f87fe3782dd1cd1547f2)) - Merge pull request #2105 from jalil-salame/fix-2103 ([`04a18f3`](https://github.com/GitoxideLabs/gitoxide/commit/04a18f3a4520dd6f49b5f87fe3782dd1cd1547f2))

View File

@@ -2,7 +2,7 @@ lints.workspace = true
[package] [package]
name = "gix-ref" name = "gix-ref"
version = "0.53.0" version = "0.53.1"
repository = "https://github.com/GitoxideLabs/gitoxide" repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
description = "A crate to handle git references" description = "A crate to handle git references"
@@ -22,13 +22,13 @@ serde = ["dep:serde", "gix-hash/serde", "gix-actor/serde", "gix-object/serde"]
[dependencies] [dependencies]
gix-features = { version = "^0.43.1", path = "../gix-features", features = ["walkdir"] } gix-features = { version = "^0.43.1", path = "../gix-features", features = ["walkdir"] }
gix-fs = { version = "^0.16.0", path = "../gix-fs" } gix-fs = { version = "^0.16.1", path = "../gix-fs" }
gix-path = { version = "^0.10.20", path = "../gix-path" } gix-path = { version = "^0.10.20", path = "../gix-path" }
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-utils = { version = "^0.3.0", path = "../gix-utils" } gix-utils = { version = "^0.3.0", path = "../gix-utils" }
gix-validate = { version = "^0.10.0", path = "../gix-validate" } gix-validate = { version = "^0.10.0", path = "../gix-validate" }
gix-actor = { version = "^0.35.3", path = "../gix-actor" } gix-actor = { version = "^0.35.4", path = "../gix-actor" }
gix-lock = { version = "^18.0.0", path = "../gix-lock" } gix-lock = { version = "^18.0.0", path = "../gix-lock" }
gix-tempfile = { version = "^18.0.0", default-features = false, path = "../gix-tempfile" } gix-tempfile = { version = "^18.0.0", default-features = false, path = "../gix-tempfile" }

View File

@@ -28,7 +28,7 @@ serde = ["dep:serde", "gix-hash/serde", "gix-object/serde"]
[dependencies] [dependencies]
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-date = { version = "^0.10.5", path = "../gix-date" } gix-date = { version = "^0.10.5", path = "../gix-date" }
gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable", optional = true } gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable", optional = true }
gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk" } gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk" }

View File

@@ -16,7 +16,7 @@ doctest = false
[dependencies] [dependencies]
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-date = { version = "^0.10.5", path = "../gix-date" } gix-date = { version = "^0.10.5", path = "../gix-date" }
gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable" } gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable" }
gix-commitgraph = { version = "^0.29.0", path = "../gix-commitgraph" } gix-commitgraph = { version = "^0.29.0", path = "../gix-commitgraph" }

View File

@@ -21,9 +21,9 @@ worktree-rewrites = ["dep:gix-dir", "dep:gix-diff"]
[dependencies] [dependencies]
gix-index = { version = "^0.41.0", path = "../gix-index" } gix-index = { version = "^0.41.0", path = "../gix-index" }
gix-fs = { version = "^0.16.0", path = "../gix-fs" } gix-fs = { version = "^0.16.1", path = "../gix-fs" }
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-path = { version = "^0.10.20", path = "../gix-path" } gix-path = { version = "^0.10.20", path = "../gix-path" }
gix-features = { version = "^0.43.1", path = "../gix-features", features = ["progress"] } gix-features = { version = "^0.43.1", path = "../gix-features", features = ["progress"] }
gix-filter = { version = "^0.20.0", path = "../gix-filter" } gix-filter = { version = "^0.20.0", path = "../gix-filter" }

View File

@@ -17,7 +17,7 @@ doctest = false
[dependencies] [dependencies]
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-date = { version = "^0.10.5", path = "../gix-date" } gix-date = { version = "^0.10.5", path = "../gix-date" }
gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable" } gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable" }
gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk" } gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk" }

View File

@@ -18,9 +18,9 @@ doctest = false
[dependencies] [dependencies]
gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false, features = ["attributes"] } gix-worktree = { version = "^0.42.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
gix-index = { version = "^0.41.0", path = "../gix-index" } gix-index = { version = "^0.41.0", path = "../gix-index" }
gix-fs = { version = "^0.16.0", path = "../gix-fs" } gix-fs = { version = "^0.16.1", path = "../gix-fs" }
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-glob = { version = "^0.21.0", path = "../gix-glob" } gix-glob = { version = "^0.21.0", path = "../gix-glob" }
gix-path = { version = "^0.10.20", path = "../gix-path" } gix-path = { version = "^0.10.20", path = "../gix-path" }
gix-features = { version = "^0.43.1", path = "../gix-features" } gix-features = { version = "^0.43.1", path = "../gix-features" }

View File

@@ -17,11 +17,11 @@ doctest = false
[dependencies] [dependencies]
gix-features = { version = "^0.43.1", path = "../gix-features", features = ["progress", "io-pipe"] } gix-features = { version = "^0.43.1", path = "../gix-features", features = ["progress", "io-pipe"] }
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-attributes = { version = "^0.27.0", path = "../gix-attributes" } gix-attributes = { version = "^0.27.0", path = "../gix-attributes" }
gix-filter = { version = "^0.20.0", path = "../gix-filter" } gix-filter = { version = "^0.20.0", path = "../gix-filter" }
gix-traverse = { version = "^0.47.0", path = "../gix-traverse" } gix-traverse = { version = "^0.47.0", path = "../gix-traverse" }
gix-fs = { version = "^0.16.0", path = "../gix-fs" } gix-fs = { version = "^0.16.1", path = "../gix-fs" }
gix-path = { version = "^0.10.20", path = "../gix-path" } gix-path = { version = "^0.10.20", path = "../gix-path" }
thiserror = "2.0.0" thiserror = "2.0.0"

View File

@@ -24,9 +24,9 @@ serde = ["dep:serde", "bstr/serde", "gix-index/serde", "gix-hash/serde", "gix-ob
[dependencies] [dependencies]
gix-index = { version = "^0.41.0", path = "../gix-index" } gix-index = { version = "^0.41.0", path = "../gix-index" }
gix-fs = { version = "^0.16.0", path = "../gix-fs" } gix-fs = { version = "^0.16.1", path = "../gix-fs" }
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-glob = { version = "^0.21.0", path = "../gix-glob" } gix-glob = { version = "^0.21.0", path = "../gix-glob" }
gix-path = { version = "^0.10.20", path = "../gix-path" } gix-path = { version = "^0.10.20", path = "../gix-path" }
gix-attributes = { version = "^0.27.0", path = "../gix-attributes", optional = true } gix-attributes = { version = "^0.27.0", path = "../gix-attributes", optional = true }

View File

@@ -307,8 +307,8 @@ cache-efficiency-debug = ["gix-features/cache-efficiency-debug"]
[dependencies] [dependencies]
gix-utils = { version = "^0.3.0", path = "../gix-utils" } gix-utils = { version = "^0.3.0", path = "../gix-utils" }
gix-fs = { version = "^0.16.0", path = "../gix-fs" } gix-fs = { version = "^0.16.1", path = "../gix-fs" }
gix-ref = { version = "^0.53.0", path = "../gix-ref" } gix-ref = { version = "^0.53.1", path = "../gix-ref" }
gix-discover = { version = "^0.41.0", path = "../gix-discover" } gix-discover = { version = "^0.41.0", path = "../gix-discover" }
gix-tempfile = { version = "^18.0.0", path = "../gix-tempfile", default-features = false } gix-tempfile = { version = "^18.0.0", path = "../gix-tempfile", default-features = false }
gix-lock = { version = "^18.0.0", path = "../gix-lock" } gix-lock = { version = "^18.0.0", path = "../gix-lock" }
@@ -323,8 +323,8 @@ gix-config = { version = "^0.46.0", path = "../gix-config" }
gix-odb = { version = "^0.70.0", path = "../gix-odb" } gix-odb = { version = "^0.70.0", path = "../gix-odb" }
gix-hash = { version = "^0.19.0", path = "../gix-hash" } gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-shallow = { version = "^0.5.0", path = "../gix-shallow" } gix-shallow = { version = "^0.5.0", path = "../gix-shallow" }
gix-object = { version = "^0.50.1", path = "../gix-object" } gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-actor = { version = "^0.35.3", path = "../gix-actor" } gix-actor = { version = "^0.35.4", path = "../gix-actor" }
gix-pack = { version = "^0.60.0", path = "../gix-pack", default-features = false, features = [ gix-pack = { version = "^0.60.0", path = "../gix-pack", default-features = false, features = [
"object-cache-dynamic", "object-cache-dynamic",
] } ] }

View File

@@ -28,7 +28,7 @@ xz = ["dep:xz2"]
gix-lock = { version = "^18.0.0", path = "../../gix-lock" } gix-lock = { version = "^18.0.0", path = "../../gix-lock" }
gix-discover = { version = "^0.41.0", path = "../../gix-discover" } gix-discover = { version = "^0.41.0", path = "../../gix-discover" }
gix-worktree = { version = "^0.42.0", path = "../../gix-worktree" } gix-worktree = { version = "^0.42.0", path = "../../gix-worktree" }
gix-fs = { version = "^0.16.0", path = "../../gix-fs" } gix-fs = { version = "^0.16.1", path = "../../gix-fs" }
gix-tempfile = { version = "^18.0.0", path = "../../gix-tempfile", default-features = false, features = ["signals"] } gix-tempfile = { version = "^18.0.0", path = "../../gix-tempfile", default-features = false, features = ["signals"] }
winnow = { version = "0.7.12", features = ["simd"] } winnow = { version = "0.7.12", features = ["simd"] }