Skip to content

Commit

Permalink
fix: bump gix-transport version to prevent it from being picked up.
Browse files Browse the repository at this point in the history
`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.
  • Loading branch information
Byron committed Oct 13, 2023
1 parent 4642c0c commit 8011c73
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 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 gitoxide-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"]
# deselect everything else (like "performance") as this should be controllable by the parent application.
gix = { version = "^0.55.1", path = "../gix", default-features = false, features = ["blob-diff", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status"] }
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"] }
gix-transport-configuration-only = { package = "gix-transport", version = "^0.37.1", path = "../gix-transport", default-features = false }
gix-transport-configuration-only = { package = "gix-transport", version = "^0.38.0", path = "../gix-transport", default-features = false }
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.6.0", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }
gix-status = { version = "^0.2.0", path = "../gix-status" }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion gix-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ required-features = ["async-client"]

[dependencies]
gix-features = { version = "^0.36.0", path = "../gix-features", features = ["progress"] }
gix-transport = { version = "^0.37.1", path = "../gix-transport" }
gix-transport = { version = "^0.38.0", path = "../gix-transport" }
gix-hash = { version = "^0.13.1", path = "../gix-hash" }
gix-date = { version = "^0.8.0", path = "../gix-date" }
gix-credentials = { version = "^0.21.0", path = "../gix-credentials" }
Expand Down
2 changes: 1 addition & 1 deletion gix-transport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gix-transport"
version = "0.37.1"
version = "0.38.0"
repository = "https://github.com/Byron/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project dedicated to implementing the git transport layer"
Expand Down
2 changes: 1 addition & 1 deletion gix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ gix-archive = { version = "^0.6.0", path = "../gix-archive", default-features =

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

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

0 comments on commit 8011c73

Please sign in to comment.