Skip to content

Commit 4289ae6

Browse files
committed
Release gix-date v0.10.5
1 parent ca7800c commit 4289ae6

File tree

16 files changed

+439
-396
lines changed

16 files changed

+439
-396
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gix-actor/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-date/serde"]
2020

2121
[dependencies]
22-
gix-date = { version = "^0.10.4", path = "../gix-date" }
22+
gix-date = { version = "^0.10.5", path = "../gix-date" }
2323
gix-utils = { version = "^0.3.0", path = "../gix-utils" }
2424

2525
thiserror = "2.0.0"

gix-archive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ zip = ["dep:zip"]
3030
gix-worktree-stream = { version = "^0.22.0", path = "../gix-worktree-stream" }
3131
gix-object = { version = "^0.50.1", path = "../gix-object" }
3232
gix-path = { version = "^0.10.20", path = "../gix-path", optional = true }
33-
gix-date = { version = "^0.10.4", path = "../gix-date" }
33+
gix-date = { version = "^0.10.5", path = "../gix-date" }
3434

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

gix-blame/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ rust-version = "1.70"
1414
gix-commitgraph = { version = "^0.29.0", path = "../gix-commitgraph" }
1515
gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk" }
1616
gix-trace = { version = "^0.1.13", path = "../gix-trace" }
17-
gix-date = { version = "^0.10.4", path = "../gix-date" }
17+
gix-date = { version = "^0.10.5", path = "../gix-date" }
1818
gix-diff = { version = "^0.53.0", path = "../gix-diff", default-features = false, features = ["blob"] }
1919
gix-object = { version = "^0.50.1", path = "../gix-object" }
2020
gix-hash = { version = "^0.19.0", path = "../gix-hash" }

gix-credentials/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ gix-path = { version = "^0.10.20", path = "../gix-path" }
2525
gix-command = { version = "^0.6.2", path = "../gix-command" }
2626
gix-config-value = { version = "^0.15.1", path = "../gix-config-value" }
2727
gix-prompt = { version = "^0.11.1", path = "../gix-prompt" }
28-
gix-date = { version = "^0.10.4", path = "../gix-date" }
28+
gix-date = { version = "^0.10.5", path = "../gix-date" }
2929
gix-trace = { version = "^0.1.13", path = "../gix-trace" }
3030

3131
thiserror = "2.0.0"

gix-date/CHANGELOG.md

Lines changed: 424 additions & 381 deletions
Large diffs are not rendered by default.

gix-date/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-date"
5-
version = "0.10.4"
5+
version = "0.10.5"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "A crate of the gitoxide project parsing dates the way git does"

gix-mailmap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = ["dep:serde", "bstr/serde", "gix-actor/serde"]
2020

2121
[dependencies]
2222
gix-actor = { version = "^0.35.3", path = "../gix-actor" }
23-
gix-date = { version = "^0.10.4", path = "../gix-date" }
23+
gix-date = { version = "^0.10.5", path = "../gix-date" }
2424
bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }
2525
thiserror = "2.0.0"
2626
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

gix-negotiate/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ test = false
1818
[dependencies]
1919
gix-hash = { version = "^0.19.0", path = "../gix-hash" }
2020
gix-object = { version = "^0.50.1", path = "../gix-object" }
21-
gix-date = { version = "^0.10.4", path = "../gix-date" }
21+
gix-date = { version = "^0.10.5", path = "../gix-date" }
2222
gix-commitgraph = { version = "^0.29.0", path = "../gix-commitgraph" }
2323
gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk" }
2424
thiserror = "2.0.0"

gix-object/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ gix-hash = { version = "^0.19.0", path = "../gix-hash" }
4848
gix-hashtable = { version = "^0.9.0", path = "../gix-hashtable" }
4949
gix-validate = { version = "^0.10.0", path = "../gix-validate" }
5050
gix-actor = { version = "^0.35.3", path = "../gix-actor" }
51-
gix-date = { version = "^0.10.4", path = "../gix-date" }
51+
gix-date = { version = "^0.10.5", path = "../gix-date" }
5252
gix-path = { version = "^0.10.20", path = "../gix-path" }
5353
gix-utils = { version = "^0.3.0", path = "../gix-utils" }
5454

0 commit comments

Comments
 (0)