Skip to content

Commit

Permalink
assure the next release is breaking
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jul 29, 2024
1 parent 9d35a0a commit 9fd1090
Show file tree
Hide file tree
Showing 15 changed files with 381 additions and 328 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gix-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ doctest = false
serde = ["dep:serde", "bstr/serde", "gix-date/serde"]

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

thiserror = "1.0.38"
Expand Down
2 changes: 1 addition & 1 deletion gix-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ zip = ["dep:zip"]
gix-worktree-stream = { version = "^0.13.1", path = "../gix-worktree-stream" }
gix-object = { version = "^0.42.3", path = "../gix-object" }
gix-path = { version = "^0.10.9", path = "../gix-path", optional = true }
gix-date = { version = "^0.8.7", path = "../gix-date" }
gix-date = { version = "^0.9.0", path = "../gix-date" }

flate2 = { version = "1.0.26", optional = true }
zip = { version = "2.1.0", optional = true, default-features = false, features = ["deflate"] }
Expand Down
627 changes: 340 additions & 287 deletions gix-date/CHANGELOG.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions gix-date/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gix-date"
version = "0.8.7"
version = "0.9.0"
repository = "https://github.com/Byron/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project parsing dates the way git does"
Expand All @@ -14,19 +14,19 @@ doctest = false

[features]
## Data structures implement `serde::Serialize` and `serde::Deserialize`.
serde= ["dep:serde", "bstr/serde"]
serde = ["dep:serde", "bstr/serde"]

[dependencies]
bstr = { version = "1.3.0", default-features = false, features = ["std"]}
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
itoa = "1.0.1"
jiff = "0.1.1"
thiserror = "1.0.32"

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

[dev-dependencies]
gix-testtools = { path = "../tests/tools"}
gix-testtools = { path = "../tests/tools" }
once_cell = "1.12.0"
gix-hash = { path = "../gix-hash" }

Expand Down
10 changes: 5 additions & 5 deletions gix-mailmap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ doctest = false

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

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

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

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

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion gix-negotiate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ test = false
[dependencies]
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
gix-object = { version = "^0.42.3", path = "../gix-object" }
gix-date = { version = "^0.8.7", path = "../gix-date" }
gix-date = { version = "^0.9.0", path = "../gix-date" }
gix-commitgraph = { version = "^0.24.3", path = "../gix-commitgraph" }
gix-revwalk = { version = "^0.13.2", path = "../gix-revwalk" }
thiserror = "1.0.40"
Expand Down
2 changes: 1 addition & 1 deletion gix-object/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ gix-features = { version = "^0.38.2", path = "../gix-features", features = [
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
gix-validate = { version = "^0.8.5", path = "../gix-validate" }
gix-actor = { version = "^0.31.4", path = "../gix-actor" }
gix-date = { version = "^0.8.7", path = "../gix-date" }
gix-date = { version = "^0.9.0", path = "../gix-date" }
gix-utils = { version = "^0.1.11", path = "../gix-utils" }

itoa = "1.0.1"
Expand Down
2 changes: 1 addition & 1 deletion gix-odb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ serde = ["dep:serde", "gix-hash/serde", "gix-object/serde", "gix-pack/serde"]
[dependencies]
gix-features = { version = "^0.38.2", path = "../gix-features", features = ["rustsha1", "walkdir", "zlib", "crc32"] }
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
gix-date = { version = "^0.8.7", path = "../gix-date" }
gix-date = { version = "^0.9.0", path = "../gix-date" }
gix-path = { version = "^0.10.9", path = "../gix-path" }
gix-quote = { version = "^0.4.12", path = "../gix-quote" }
gix-object = { version = "^0.42.3", path = "../gix-object" }
Expand Down
2 changes: 1 addition & 1 deletion gix-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ gix-features = { version = "^0.38.2", path = "../gix-features", features = [
] }
gix-transport = { version = "^0.42.2", path = "../gix-transport" }
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
gix-date = { version = "^0.8.7", path = "../gix-date" }
gix-date = { version = "^0.9.0", path = "../gix-date" }
gix-credentials = { version = "^0.24.4", path = "../gix-credentials" }
gix-utils = { version = "^0.1.12", path = "../gix-utils" }

Expand Down
6 changes: 3 additions & 3 deletions gix-ref/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test = true
serde = ["dep:serde", "gix-hash/serde", "gix-actor/serde", "gix-object/serde"]

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

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

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

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

[package.metadata.docs.rs]
features = ["document-features", "serde"]
6 changes: 3 additions & 3 deletions gix-revision/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ default = ["describe"]
describe = ["dep:gix-trace", "dep:gix-hashtable"]

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

[dependencies]
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
gix-object = { version = "^0.42.3", path = "../gix-object" }
gix-date = { version = "^0.8.7", path = "../gix-date" }
gix-date = { version = "^0.9.0", path = "../gix-date" }
gix-hashtable = { version = "^0.5.2", path = "../gix-hashtable", optional = true }
gix-revwalk = { version = "^0.13.2", path = "../gix-revwalk" }
gix-trace = { version = "^0.1.8", path = "../gix-trace", optional = true }

bstr = { version = "1.3.0", default-features = false, features = ["std"]}
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
thiserror = "1.0.26"
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
document-features = { version = "0.2.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion gix-revwalk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ doctest = false
[dependencies]
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
gix-object = { version = "^0.42.3", path = "../gix-object" }
gix-date = { version = "^0.8.7", path = "../gix-date" }
gix-date = { version = "^0.9.0", path = "../gix-date" }
gix-hashtable = { version = "^0.5.2", path = "../gix-hashtable" }
gix-commitgraph = { version = "^0.24.3", path = "../gix-commitgraph" }

Expand Down
2 changes: 1 addition & 1 deletion gix-traverse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ doctest = false
[dependencies]
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
gix-object = { version = "^0.42.3", path = "../gix-object" }
gix-date = { version = "^0.8.7", path = "../gix-date" }
gix-date = { version = "^0.9.0", path = "../gix-date" }
gix-hashtable = { version = "^0.5.2", path = "../gix-hashtable" }
gix-revwalk = { version = "^0.13.2", path = "../gix-revwalk" }
gix-commitgraph = { version = "^0.24.3", path = "../gix-commitgraph" }
Expand Down
2 changes: 1 addition & 1 deletion gix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ gix-tempfile = { version = "^14.0.0", path = "../gix-tempfile", default-features
gix-lock = { version = "^14.0.0", path = "../gix-lock" }
gix-validate = { version = "^0.8.5", path = "../gix-validate" }
gix-sec = { version = "^0.10.7", path = "../gix-sec" }
gix-date = { version = "^0.8.7", path = "../gix-date" }
gix-date = { version = "^0.9.0", path = "../gix-date" }
gix-refspec = { version = "^0.23.1", path = "../gix-refspec" }
gix-filter = { version = "^0.11.3", path = "../gix-filter", optional = true }
gix-dir = { version = "^0.6.0", path = "../gix-dir", optional = true }
Expand Down

0 comments on commit 9fd1090

Please sign in to comment.