Skip to content

Commit 5823b22

Browse files
authored
Merge pull request #1957 from EliahKagan/run-ci/versioning
Advance `gix-features` version, as it republishes `bytesize` version 2
2 parents c7ea834 + 6315536 commit 5823b22

File tree

20 files changed

+46
-46
lines changed

20 files changed

+46
-46
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"]
168168
anyhow = "1.0.42"
169169

170170
gitoxide-core = { version = "^0.46.0", path = "gitoxide-core" }
171-
gix-features = { version = "^0.41.1", path = "gix-features" }
171+
gix-features = { version = "^0.42.0", path = "gix-features" }
172172
gix = { version = "^0.71.0", path = "gix", default-features = false }
173173

174174
clap = { version = "4.5.36", features = ["derive", "cargo"] }

gix-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ autotests = false
1919
serde = ["dep:serde", "bstr/serde", "gix-sec/serde", "gix-ref/serde", "gix-glob/serde", "gix-config-value/serde"]
2020

2121
[dependencies]
22-
gix-features = { version = "^0.41.1", path = "../gix-features" }
22+
gix-features = { version = "^0.42.0", path = "../gix-features" }
2323
gix-config-value = { version = "^0.14.12", path = "../gix-config-value" }
2424
gix-path = { version = "^0.10.15", path = "../gix-path" }
2525
gix-sec = { version = "^0.10.12", path = "../gix-sec" }

gix-features/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ lints.workspace = true
44
name = "gix-features"
55
description = "A crate to integrate various capabilities using compile-time feature flags"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
7-
version = "0.41.1"
7+
version = "0.42.0"
88
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
99
license = "MIT OR Apache-2.0"
1010
edition = "2021"

gix-fs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ serde = ["dep:serde"]
2121
[dependencies]
2222
bstr = "1.12.0"
2323
gix-path = { version = "^0.10.15", path = "../gix-path" }
24-
gix-features = { version = "^0.41.1", path = "../gix-features", features = ["fs-read-dir"] }
24+
gix-features = { version = "^0.42.0", path = "../gix-features", features = ["fs-read-dir"] }
2525
gix-utils = { version = "^0.2.0", path = "../gix-utils" }
2626
thiserror = "2.0.0"
2727
serde = { version = "1.0.114", optional = true, default-features = false, features = ["std", "derive"] }

gix-glob/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", "bitflags/serde"]
2020

2121
[dependencies]
2222
gix-path = { version = "^0.10.15", path = "../gix-path" }
23-
gix-features = { version = "^0.41.1", path = "../gix-features" }
23+
gix-features = { version = "^0.42.0", path = "../gix-features" }
2424
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
2525
bitflags = "2"
2626
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

gix-hash/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ test = false
2020
serde = ["dep:serde"]
2121

2222
[dependencies]
23-
gix-features = { version = "^0.41.1", path = "../gix-features", features = ["progress"] }
23+
gix-features = { version = "^0.42.0", path = "../gix-features", features = ["progress"] }
2424

2525
thiserror = "2.0.0"
2626
faster-hex = { version = "0.10.0" }

gix-index/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ test = true
2222
serde = ["dep:serde", "smallvec/serde", "gix-hash/serde"]
2323

2424
[dependencies]
25-
gix-features = { version = "^0.41.1", path = "../gix-features", features = [
25+
gix-features = { version = "^0.42.0", path = "../gix-features", features = [
2626
"progress",
2727
] }
2828
gix-hash = { version = "^0.17.0", path = "../gix-hash" }

gix-object/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ serde = [
4141
verbose-object-parsing-errors = ["winnow/std"]
4242

4343
[dependencies]
44-
gix-features = { version = "^0.41.1", path = "../gix-features", features = [
44+
gix-features = { version = "^0.42.0", path = "../gix-features", features = [
4545
"progress",
4646
] }
4747
gix-hash = { version = "^0.17.0", path = "../gix-hash" }

gix-odb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ doctest = false
2020
serde = ["dep:serde", "gix-hash/serde", "gix-object/serde", "gix-pack/serde"]
2121

2222
[dependencies]
23-
gix-features = { version = "^0.41.1", path = "../gix-features", features = ["walkdir", "zlib", "crc32"] }
23+
gix-features = { version = "^0.42.0", path = "../gix-features", features = ["walkdir", "zlib", "crc32"] }
2424
gix-hashtable = { version = "^0.8.0", path = "../gix-hashtable" }
2525
gix-hash = { version = "^0.17.0", path = "../gix-hash" }
2626
gix-date = { version = "^0.9.4", path = "../gix-date" }

0 commit comments

Comments
 (0)