Skip to content

Commit 9fd1090

Browse files
committedJul 29, 2024··
assure the next release is breaking
1 parent 9d35a0a commit 9fd1090

File tree

15 files changed

+381
-328
lines changed

15 files changed

+381
-328
lines changed
 

‎Cargo.lock

+16-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎gix-actor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ doctest = false
1818
serde = ["dep:serde", "bstr/serde", "gix-date/serde"]
1919

2020
[dependencies]
21-
gix-date = { version = "^0.8.7", path = "../gix-date" }
21+
gix-date = { version = "^0.9.0", path = "../gix-date" }
2222
gix-utils = { version = "^0.1.11", path = "../gix-utils" }
2323

2424
thiserror = "1.0.38"

‎gix-archive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ zip = ["dep:zip"]
2828
gix-worktree-stream = { version = "^0.13.1", path = "../gix-worktree-stream" }
2929
gix-object = { version = "^0.42.3", path = "../gix-object" }
3030
gix-path = { version = "^0.10.9", path = "../gix-path", optional = true }
31-
gix-date = { version = "^0.8.7", path = "../gix-date" }
31+
gix-date = { version = "^0.9.0", path = "../gix-date" }
3232

3333
flate2 = { version = "1.0.26", optional = true }
3434
zip = { version = "2.1.0", optional = true, default-features = false, features = ["deflate"] }

‎gix-date/CHANGELOG.md

+340-287
Large diffs are not rendered by default.

‎gix-date/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-date"
3-
version = "0.8.7"
3+
version = "0.9.0"
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"
@@ -14,19 +14,19 @@ doctest = false
1414

1515
[features]
1616
## Data structures implement `serde::Serialize` and `serde::Deserialize`.
17-
serde= ["dep:serde", "bstr/serde"]
17+
serde = ["dep:serde", "bstr/serde"]
1818

1919
[dependencies]
20-
bstr = { version = "1.3.0", default-features = false, features = ["std"]}
21-
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
20+
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
21+
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
2222
itoa = "1.0.1"
2323
jiff = "0.1.1"
2424
thiserror = "1.0.32"
2525

2626
document-features = { version = "0.2.0", optional = true }
2727

2828
[dev-dependencies]
29-
gix-testtools = { path = "../tests/tools"}
29+
gix-testtools = { path = "../tests/tools" }
3030
once_cell = "1.12.0"
3131
gix-hash = { path = "../gix-hash" }
3232

‎gix-mailmap/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ doctest = false
1414

1515
[features]
1616
## Data structures implement `serde::Serialize` and `serde::Deserialize`.
17-
serde= ["dep:serde", "bstr/serde", "gix-actor/serde"]
17+
serde = ["dep:serde", "bstr/serde", "gix-actor/serde"]
1818

1919
[dependencies]
2020
gix-actor = { version = "^0.31.5", path = "../gix-actor" }
21-
gix-date = { version = "^0.8.7", path = "../gix-date" }
22-
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"]}
21+
gix-date = { version = "^0.9.0", path = "../gix-date" }
22+
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
2323
thiserror = "1.0.38"
24-
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
24+
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
2525

2626
document-features = { version = "0.2.0", optional = true }
2727

2828
[dev-dependencies]
29-
gix-testtools = { path = "../tests/tools"}
29+
gix-testtools = { path = "../tests/tools" }
3030

3131
[package.metadata.docs.rs]
3232
all-features = true

‎gix-negotiate/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ test = false
1616
[dependencies]
1717
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
1818
gix-object = { version = "^0.42.3", path = "../gix-object" }
19-
gix-date = { version = "^0.8.7", path = "../gix-date" }
19+
gix-date = { version = "^0.9.0", path = "../gix-date" }
2020
gix-commitgraph = { version = "^0.24.3", path = "../gix-commitgraph" }
2121
gix-revwalk = { version = "^0.13.2", path = "../gix-revwalk" }
2222
thiserror = "1.0.40"

‎gix-object/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ gix-features = { version = "^0.38.2", path = "../gix-features", features = [
4141
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
4242
gix-validate = { version = "^0.8.5", path = "../gix-validate" }
4343
gix-actor = { version = "^0.31.4", path = "../gix-actor" }
44-
gix-date = { version = "^0.8.7", path = "../gix-date" }
44+
gix-date = { version = "^0.9.0", path = "../gix-date" }
4545
gix-utils = { version = "^0.1.11", path = "../gix-utils" }
4646

4747
itoa = "1.0.1"

‎gix-odb/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = ["dep:serde", "gix-hash/serde", "gix-object/serde", "gix-pack/serde"]
2020
[dependencies]
2121
gix-features = { version = "^0.38.2", path = "../gix-features", features = ["rustsha1", "walkdir", "zlib", "crc32"] }
2222
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
23-
gix-date = { version = "^0.8.7", path = "../gix-date" }
23+
gix-date = { version = "^0.9.0", path = "../gix-date" }
2424
gix-path = { version = "^0.10.9", path = "../gix-path" }
2525
gix-quote = { version = "^0.4.12", path = "../gix-quote" }
2626
gix-object = { version = "^0.42.3", path = "../gix-object" }

‎gix-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ gix-features = { version = "^0.38.2", path = "../gix-features", features = [
5050
] }
5151
gix-transport = { version = "^0.42.2", path = "../gix-transport" }
5252
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
53-
gix-date = { version = "^0.8.7", path = "../gix-date" }
53+
gix-date = { version = "^0.9.0", path = "../gix-date" }
5454
gix-credentials = { version = "^0.24.4", path = "../gix-credentials" }
5555
gix-utils = { version = "^0.1.12", path = "../gix-utils" }
5656

‎gix-ref/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test = true
1919
serde = ["dep:serde", "gix-hash/serde", "gix-actor/serde", "gix-object/serde"]
2020

2121
[dependencies]
22-
gix-features = { version = "^0.38.2", path = "../gix-features", features = ["walkdir"]}
22+
gix-features = { version = "^0.38.2", path = "../gix-features", features = ["walkdir"] }
2323
gix-fs = { version = "^0.11.2", path = "../gix-fs" }
2424
gix-path = { version = "^0.10.9", path = "../gix-path" }
2525
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
@@ -32,7 +32,7 @@ gix-tempfile = { version = "^14.0.0", default-features = false, path = "../gix-t
3232

3333
thiserror = "1.0.34"
3434
winnow = { version = "0.6.0", features = ["simd"] }
35-
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
35+
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
3636

3737
# packed refs
3838
memmap2 = "0.9.0"
@@ -41,7 +41,7 @@ document-features = { version = "0.2.1", optional = true }
4141

4242
[dev-dependencies]
4343
gix-testtools = { path = "../tests/tools" }
44-
gix-date = { version = "^0.8.7", path = "../gix-date" }
44+
gix-date = { version = "^0.9.0", path = "../gix-date" }
4545

4646
[package.metadata.docs.rs]
4747
features = ["document-features", "serde"]

‎gix-revision/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ default = ["describe"]
1919
describe = ["dep:gix-trace", "dep:gix-hashtable"]
2020

2121
## Data structures implement `serde::Serialize` and `serde::Deserialize`.
22-
serde = [ "dep:serde", "gix-hash/serde", "gix-object/serde" ]
22+
serde = ["dep:serde", "gix-hash/serde", "gix-object/serde"]
2323

2424
[dependencies]
2525
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
2626
gix-object = { version = "^0.42.3", path = "../gix-object" }
27-
gix-date = { version = "^0.8.7", path = "../gix-date" }
27+
gix-date = { version = "^0.9.0", path = "../gix-date" }
2828
gix-hashtable = { version = "^0.5.2", path = "../gix-hashtable", optional = true }
2929
gix-revwalk = { version = "^0.13.2", path = "../gix-revwalk" }
3030
gix-trace = { version = "^0.1.8", path = "../gix-trace", optional = true }
3131

32-
bstr = { version = "1.3.0", default-features = false, features = ["std"]}
32+
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
3333
thiserror = "1.0.26"
3434
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
3535
document-features = { version = "0.2.1", optional = true }

‎gix-revwalk/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ doctest = false
1515
[dependencies]
1616
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
1717
gix-object = { version = "^0.42.3", path = "../gix-object" }
18-
gix-date = { version = "^0.8.7", path = "../gix-date" }
18+
gix-date = { version = "^0.9.0", path = "../gix-date" }
1919
gix-hashtable = { version = "^0.5.2", path = "../gix-hashtable" }
2020
gix-commitgraph = { version = "^0.24.3", path = "../gix-commitgraph" }
2121

‎gix-traverse/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ doctest = false
1616
[dependencies]
1717
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
1818
gix-object = { version = "^0.42.3", path = "../gix-object" }
19-
gix-date = { version = "^0.8.7", path = "../gix-date" }
19+
gix-date = { version = "^0.9.0", path = "../gix-date" }
2020
gix-hashtable = { version = "^0.5.2", path = "../gix-hashtable" }
2121
gix-revwalk = { version = "^0.13.2", path = "../gix-revwalk" }
2222
gix-commitgraph = { version = "^0.24.3", path = "../gix-commitgraph" }

‎gix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ gix-tempfile = { version = "^14.0.0", path = "../gix-tempfile", default-features
306306
gix-lock = { version = "^14.0.0", path = "../gix-lock" }
307307
gix-validate = { version = "^0.8.5", path = "../gix-validate" }
308308
gix-sec = { version = "^0.10.7", path = "../gix-sec" }
309-
gix-date = { version = "^0.8.7", path = "../gix-date" }
309+
gix-date = { version = "^0.9.0", path = "../gix-date" }
310310
gix-refspec = { version = "^0.23.1", path = "../gix-refspec" }
311311
gix-filter = { version = "^0.11.3", path = "../gix-filter", optional = true }
312312
gix-dir = { version = "^0.6.0", path = "../gix-dir", optional = true }

0 commit comments

Comments
 (0)
Please sign in to comment.