Skip to content

Commit 3be2b1c

Browse files
committed
Release gix-date v0.7.4, gix-index v0.23.0, safety bump 5 crates
SAFETY BUMP: gix-worktree v0.25.0, gix-worktree-state v0.2.0, gix v0.53.0, gitoxide-core v0.32.0, gitoxide v0.30.0
1 parent 6fdbc66 commit 3be2b1c

File tree

18 files changed

+67
-65
lines changed

18 files changed

+67
-65
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repository = "https://github.com/Byron/gitoxide"
55
authors = ["Sebastian Thiel <[email protected]>"]
66
edition = "2021"
77
license = "MIT OR Apache-2.0"
8-
version = "0.29.0"
8+
version = "0.30.0"
99
default-run = "gix"
1010
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
1111
resolver = "2"
@@ -162,9 +162,9 @@ gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"]
162162
[dependencies]
163163
anyhow = "1.0.42"
164164

165-
gitoxide-core = { version = "^0.31.0", path = "gitoxide-core" }
165+
gitoxide-core = { version = "^0.32.0", path = "gitoxide-core" }
166166
gix-features = { version = "^0.33.0", path = "gix-features" }
167-
gix = { version = "^0.52.0", path = "gix", default-features = false }
167+
gix = { version = "^0.53.0", path = "gix", default-features = false }
168168
time = "0.3.23"
169169

170170
clap = { version = "4.1.1", features = ["derive", "cargo"] }

gitoxide-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "gitoxide-core"
33
description = "The library implementing all capabilities of the gitoxide CLI"
44
repository = "https://github.com/Byron/gitoxide"
5-
version = "0.31.0"
5+
version = "0.32.0"
66
authors = ["Sebastian Thiel <[email protected]>"]
77
license = "MIT OR Apache-2.0"
88
edition = "2021"
@@ -44,7 +44,7 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"]
4444

4545
[dependencies]
4646
# deselect everything else (like "performance") as this should be controllable by the parent application.
47-
gix = { version = "^0.52.0", path = "../gix", default-features = false }
47+
gix = { version = "^0.53.0", path = "../gix", default-features = false }
4848
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.41.0", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static"] }
4949
gix-transport-configuration-only = { package = "gix-transport", version = "^0.35.0", path = "../gix-transport", default-features = false }
5050
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.3.0", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }

gix-archive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ zip = ["dep:zip", "dep:time"]
2727
gix-worktree-stream = { version = "^0.3.0", path = "../gix-worktree-stream" }
2828
gix-object = { version = "^0.35.0", path = "../gix-object" }
2929
gix-path = { version = "^0.9.0", path = "../gix-path", optional = true }
30-
gix-date = { version = "^0.7.3", path = "../gix-date" }
30+
gix-date = { version = "^0.7.4", path = "../gix-date" }
3131

3232
flate2 = { version = "1.0.26", optional = true }
3333
zip = { version = "0.6.6", optional = true, default-features = false, features = ["deflate", "time"] }

gix-date/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.7.4 (2023-09-01)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

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

16-
- 2 commits contributed to the release over the course of 9 calendar days.
16+
- 3 commits contributed to the release over the course of 9 calendar days.
1717
- 9 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
@@ -31,6 +31,7 @@ A maintenance release without user-facing changes.
3131
<details><summary>view details</summary>
3232

3333
* **Uncategorized**
34+
- Prepare `gix-index` release ([`6fdbc66`](https://github.com/Byron/gitoxide/commit/6fdbc667c20f10734390341b435c15c73b7cd227))
3435
- Thanks clippy ([`5044c3b`](https://github.com/Byron/gitoxide/commit/5044c3b87456cf58ebfbbd00f23c9ba671cb290c))
3536
- Merge branch 'gix-submodule' ([`363ee77`](https://github.com/Byron/gitoxide/commit/363ee77400805f473c9ad66eadad9214e7ab66f4))
3637
</details>

gix-date/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-date"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT OR Apache-2.0"
66
description = "A crate of the gitoxide project parsing dates the way git does"

0 commit comments

Comments
 (0)