Skip to content

Commit

Permalink
Release gix-hash v0.13.3, gix-index v0.27.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Dec 10, 2023
1 parent b3ecbb7 commit 98b08f4
Show file tree
Hide file tree
Showing 21 changed files with 94 additions and 89 deletions.
112 changes: 56 additions & 56 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gix-diff/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ wasm = ["dep:getrandom"]
doctest = false

[dependencies]
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-filter = { version = "^0.7.0", path = "../gix-filter", optional = true }
gix-worktree = { version = "^0.28.0", path = "../gix-worktree", default-features = false, features = ["attributes"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion gix-discover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ doctest = false
gix-sec = { version = "^0.10.1", path = "../gix-sec" }
gix-path = { version = "^0.10.1", path = "../gix-path" }
gix-ref = { version = "^0.39.0", path = "../gix-ref" }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }

bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
thiserror = "1.0.26"
Expand Down
2 changes: 1 addition & 1 deletion gix-filter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ include = ["src/**/*", "LICENSE-*"]
doctest = false

[dependencies]
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-trace = { version = "^0.1.4", path = "../gix-trace" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-command = { version = "^0.3.0", path = "../gix-command" }
Expand Down
2 changes: 1 addition & 1 deletion gix-fsck/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rust-version = "1.65"
doctest = false

[dependencies]
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-hashtable = { version = "^0.4.1", path = "../gix-hashtable" }
gix-object = { version = "^0.39.0", path = "../gix-object" }

Expand Down
5 changes: 3 additions & 2 deletions gix-hash/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ 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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.13.3 (2023-12-10)

A maintenance release without user-facing changes.

### Commit Statistics

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

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

* **Uncategorized**
- Prepare changelog for `gix-index` release ([`b3ecbb7`](https://github.com/Byron/gitoxide/commit/b3ecbb7e27bbd088733c70a319a57a9e963f8bd0))
- Merge branch '32bit' ([`ff1542c`](https://github.com/Byron/gitoxide/commit/ff1542cedf3072a8c7c493d454aef5cc61de6d4c))
- Update `faster-hex` crate to latest version ([`b0bfd01`](https://github.com/Byron/gitoxide/commit/b0bfd01e6c65cd9f6458a97bfe1218a604cd6507))
</details>
Expand Down
2 changes: 1 addition & 1 deletion gix-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gix-hash"
version = "0.13.2"
version = "0.13.3"
description = "Borrowed and owned git hash digests used to identify git objects"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
repository = "https://github.com/Byron/gitoxide"
Expand Down
20 changes: 12 additions & 8 deletions gix-index/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ 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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.27.1 (2023-12-10)

### Bug Fixes

<csr-id-e2e17c60008f287796c6c10e1fa8a64a3d4a9105/>

- <csr-id-03fa7ac64c99abc804252630c03b5b9085e9ea81/> NetBSD doesn't have `st_mtime_nsec` and `st_ctime_nsec`
It has `st_mtimensec` and `st_ctimensec` instead.

* https://man.netbsd.org/NetBSD-8.0/stat.2
* https://docs.rs/libc/0.2/x86_64-unknown-netbsd/libc/struct.stat.html#structfield.st_mtimensec
* https://docs.rs/libc/0.2/aarch64-unknown-netbsd/libc/struct.stat.html#structfield.st_mtimensec
* https://docs.rs/libc/0.2/x86_64-unknown-netbsd/libc/struct.stat.html#structfield.st_ctimensec
* https://docs.rs/libc/0.2/aarch64-unknown-netbsd/libc/struct.stat.html#structfield.st_ctimensec
- <csr-id-e2e17c60008f287796c6c10e1fa8a64a3d4a9105/> builds on 32bit android now work.
Thanks to new CI tests, these should keep working as well.
* https://docs.rs/libc/0.2/x86_64-unknown-netbsd/libc/struct.stat.html#structfield.st_mtimensec
* https://docs.rs/libc/0.2/aarch64-unknown-netbsd/libc/struct.stat.html#structfield.st_mtimensec
* https://docs.rs/libc/0.2/x86_64-unknown-netbsd/libc/struct.stat.html#structfield.st_ctimensec
* https://docs.rs/libc/0.2/aarch64-unknown-netbsd/libc/struct.stat.html#structfield.st_ctimensec

### Commit Statistics

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

- 4 commits contributed to the release over the course of 2 calendar days.
- 5 commits contributed to the release over the course of 2 calendar days.
- 3 days passed between releases.
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
Expand All @@ -36,12 +36,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<details><summary>view details</summary>

* **Uncategorized**
- Prepare changelog for `gix-index` release ([`b3ecbb7`](https://github.com/Byron/gitoxide/commit/b3ecbb7e27bbd088733c70a319a57a9e963f8bd0))
- Merge pull request #1170 from weihanglo/netbsd ([`523692b`](https://github.com/Byron/gitoxide/commit/523692b6d9d403d0e10f36f382ce7728f3ae2ad4))
- NetBSD doesn't have `st_mtime_nsec` and `st_ctime_nsec` ([`03fa7ac`](https://github.com/Byron/gitoxide/commit/03fa7ac64c99abc804252630c03b5b9085e9ea81))
- Merge branch '32bit' ([`ff1542c`](https://github.com/Byron/gitoxide/commit/ff1542cedf3072a8c7c493d454aef5cc61de6d4c))
- Builds on 32bit android now work. ([`e2e17c6`](https://github.com/Byron/gitoxide/commit/e2e17c60008f287796c6c10e1fa8a64a3d4a9105))
</details>

<csr-unknown>
builds on 32bit android now work.Thanks to new CI tests, these should keep working as well.<csr-unknown/>

## 0.27.0 (2023-12-06)

### New Features
Expand Down
4 changes: 2 additions & 2 deletions gix-index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gix-index"
version = "0.27.0"
version = "0.27.1"
repository = "https://github.com/Byron/gitoxide"
license = "MIT OR Apache-2.0"
description = "A work-in-progress crate of the gitoxide project dedicated implementing the git index file"
Expand All @@ -21,7 +21,7 @@ serde = ["dep:serde", "smallvec/serde", "gix-hash/serde"]

[dependencies]
gix-features = { version = "^0.36.1", path = "../gix-features", features = ["rustsha1", "progress"] }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-bitmap = { version = "^0.2.8", path = "../gix-bitmap" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-traverse = { version = "^0.35.0", path = "../gix-traverse" }
Expand Down
2 changes: 1 addition & 1 deletion gix-negotiate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ doctest = false
test = false

[dependencies]
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-date = { version = "^0.8.1", path = "../gix-date" }
gix-commitgraph = { version = "^0.22.1", path = "../gix-commitgraph" }
Expand Down
2 changes: 1 addition & 1 deletion gix-odb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ serde= ["dep:serde", "gix-hash/serde", "gix-object/serde", "gix-pack/serde"]

[dependencies]
gix-features = { version = "^0.36.1", path = "../gix-features", features = ["rustsha1", "walkdir", "zlib", "crc32" ] }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-date = { version = "^0.8.1", path = "../gix-date" }
gix-path = { version = "^0.10.1", path = "../gix-path" }
gix-quote = { version = "^0.4.8", path = "../gix-quote" }
Expand Down
2 changes: 1 addition & 1 deletion gix-pack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ wasm = ["gix-diff?/wasm"]
[dependencies]
gix-features = { version = "^0.36.1", path = "../gix-features", features = ["crc32", "rustsha1", "progress", "zlib"] }
gix-path = { version = "^0.10.1", path = "../gix-path" }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-chunk = { version = "^0.4.5", path = "../gix-chunk" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-hashtable = { version = "^0.4.1", path = "../gix-hashtable" }
Expand Down
2 changes: 1 addition & 1 deletion gix-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ required-features = ["async-client"]
[dependencies]
gix-features = { version = "^0.36.1", path = "../gix-features", features = ["progress"] }
gix-transport = { version = "^0.39.0", path = "../gix-transport" }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-date = { version = "^0.8.1", path = "../gix-date" }
gix-credentials = { version = "^0.22.0", path = "../gix-credentials" }

Expand Down
2 changes: 1 addition & 1 deletion gix-ref/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ serde = ["dep:serde", "gix-hash/serde", "gix-actor/serde", "gix-object/serde"]
gix-features = { version = "^0.36.1", path = "../gix-features", features = ["walkdir"]}
gix-fs = { version = "^0.8.1", path = "../gix-fs" }
gix-path = { version = "^0.10.1", path = "../gix-path" }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-date = { version = "^0.8.1", path = "../gix-date" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-validate = { version = "^0.8.1", path = "../gix-validate" }
Expand Down
2 changes: 1 addition & 1 deletion gix-refspec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ doctest = false
[dependencies]
gix-revision = { version = "^0.24.0", path = "../gix-revision", default-features = false }
gix-validate = { version = "^0.8.1", path = "../gix-validate" }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }

bstr = { version = "1.3.0", default-features = false, features = ["std"]}
thiserror = "1.0.26"
Expand Down
2 changes: 1 addition & 1 deletion gix-revision/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe = []
serde = [ "dep:serde", "gix-hash/serde", "gix-object/serde" ]

[dependencies]
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-date = { version = "^0.8.1", path = "../gix-date" }
gix-hashtable = { version = "^0.4.1", path = "../gix-hashtable" }
Expand Down
4 changes: 2 additions & 2 deletions gix-status/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ autotests = false
doctest = false

[dependencies]
gix-index = { version = "^0.27.0", path = "../gix-index" }
gix-index = { version = "^0.27.1", path = "../gix-index" }
gix-fs = { version = "^0.8.1", path = "../gix-fs" }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-path = { version = "^0.10.1", path = "../gix-path" }
gix-features = { version = "^0.36.1", path = "../gix-features" }
Expand Down
4 changes: 2 additions & 2 deletions gix-worktree-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ doctest = false

[dependencies]
gix-worktree = { version = "^0.28.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
gix-index = { version = "^0.27.0", path = "../gix-index" }
gix-index = { version = "^0.27.1", path = "../gix-index" }
gix-fs = { version = "^0.8.1", path = "../gix-fs" }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-glob = { version = "^0.14.1", path = "../gix-glob" }
gix-path = { version = "^0.10.1", path = "../gix-path" }
Expand Down
2 changes: 1 addition & 1 deletion gix-worktree-stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ doctest = false

[dependencies]
gix-features = { version = "^0.36.1", path = "../gix-features", features = ["progress", "io-pipe"] }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-attributes = { version = "^0.20.1", path = "../gix-attributes" }
gix-filter = { version = "^0.7.0", path = "../gix-filter" }
Expand Down
4 changes: 2 additions & 2 deletions gix-worktree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ attributes = ["dep:gix-attributes"]
serde = [ "dep:serde", "bstr/serde", "gix-index/serde", "gix-hash/serde", "gix-object/serde", "gix-attributes?/serde", "gix-ignore/serde" ]

[dependencies]
gix-index = { version = "^0.27.0", path = "../gix-index" }
gix-index = { version = "^0.27.1", path = "../gix-index" }
gix-fs = { version = "^0.8.1", path = "../gix-fs" }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-glob = { version = "^0.14.1", path = "../gix-glob" }
gix-path = { version = "^0.10.1", path = "../gix-path" }
Expand Down
4 changes: 2 additions & 2 deletions gix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ gix-filter = { version = "^0.7.0", path = "../gix-filter", optional = true }

gix-config = { version = "^0.32.1", path = "../gix-config" }
gix-odb = { version = "^0.55.0", path = "../gix-odb" }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-hash = { version = "^0.13.3", path = "../gix-hash" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-actor = { version = "^0.28.1", path = "../gix-actor" }
gix-pack = { version = "^0.45.0", path = "../gix-pack", default-features = false, features = ["object-cache-dynamic"] }
Expand All @@ -244,7 +244,7 @@ gix-trace = { version = "^0.1.4", path = "../gix-trace" }
gix-glob = { version = "^0.14.1", path = "../gix-glob" }
gix-credentials = { version = "^0.22.0", path = "../gix-credentials", optional = true }
gix-prompt = { version = "^0.8.0", path = "../gix-prompt", optional = true }
gix-index = { version = "^0.27.0", path = "../gix-index", optional = true }
gix-index = { version = "^0.27.1", path = "../gix-index", optional = true }
gix-attributes = { version = "^0.20.1", path = "../gix-attributes", optional = true }
gix-ignore = { version = "^0.9.1", path = "../gix-ignore", optional = true }
gix-worktree = { version = "^0.28.0", path = "../gix-worktree", optional = true, default-features = false }
Expand Down

0 comments on commit 98b08f4

Please sign in to comment.