Skip to content

Commit 8011c73

Browse files
committed
fix: bump gix-transport version to prevent it from being picked up.
`gix-transport` v0.37.1 could accidentally be picked up by older, incompatible, `gix` versions which now fail to build. Thus v0.37.1 is now yanked and replaced with v0.38.0 along with a new release of `gix` to go with it.
1 parent 4642c0c commit 8011c73

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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.

gitoxide-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"]
4646
# deselect everything else (like "performance") as this should be controllable by the parent application.
4747
gix = { version = "^0.55.1", path = "../gix", default-features = false, features = ["blob-diff", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status"] }
4848
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.44.0", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static", "generate", "streaming-input"] }
49-
gix-transport-configuration-only = { package = "gix-transport", version = "^0.37.1", path = "../gix-transport", default-features = false }
49+
gix-transport-configuration-only = { package = "gix-transport", version = "^0.38.0", path = "../gix-transport", default-features = false }
5050
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.6.0", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }
5151
gix-status = { version = "^0.2.0", path = "../gix-status" }
5252
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

gix-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ required-features = ["async-client"]
4141

4242
[dependencies]
4343
gix-features = { version = "^0.36.0", path = "../gix-features", features = ["progress"] }
44-
gix-transport = { version = "^0.37.1", path = "../gix-transport" }
44+
gix-transport = { version = "^0.38.0", path = "../gix-transport" }
4545
gix-hash = { version = "^0.13.1", path = "../gix-hash" }
4646
gix-date = { version = "^0.8.0", path = "../gix-date" }
4747
gix-credentials = { version = "^0.21.0", path = "../gix-credentials" }

gix-transport/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-transport"
3-
version = "0.37.1"
3+
version = "0.38.0"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT OR Apache-2.0"
66
description = "A crate of the gitoxide project dedicated to implementing the git transport layer"

gix/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ gix-archive = { version = "^0.6.0", path = "../gix-archive", default-features =
249249

250250
# For communication with remotes
251251
gix-protocol = { version = "^0.41.0", path = "../gix-protocol", optional = true }
252-
gix-transport = { version = "^0.37.1", path = "../gix-transport", optional = true }
252+
gix-transport = { version = "^0.38.0", path = "../gix-transport", optional = true }
253253

254254
# Just to get the progress-tree feature
255255
prodash = { workspace = true, optional = true, features = ["progress-tree"] }

0 commit comments

Comments
 (0)