forked from GitoxideLabs/gitoxide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release gix-transport v0.38.0, gix-protocol v0.41.1, gix v0.55.2, git…
…oxide-core v0.33.1, gitoxide v0.31.1
- Loading branch information
Showing
10 changed files
with
25 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ repository = "https://github.com/Byron/gitoxide" | |
authors = ["Sebastian Thiel <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
version = "0.31.0" | ||
version = "0.31.1" | ||
default-run = "gix" | ||
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"] | ||
resolver = "2" | ||
|
@@ -162,9 +162,9 @@ gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"] | |
[dependencies] | ||
anyhow = "1.0.42" | ||
|
||
gitoxide-core = { version = "^0.33.0", path = "gitoxide-core" } | ||
gitoxide-core = { version = "^0.33.1", path = "gitoxide-core" } | ||
gix-features = { version = "^0.36.0", path = "gix-features" } | ||
gix = { version = "^0.55.1", path = "gix", default-features = false } | ||
gix = { version = "^0.55.2", path = "gix", default-features = false } | ||
time = "0.3.23" | ||
|
||
clap = { version = "4.1.1", features = ["derive", "cargo"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "gitoxide-core" | ||
description = "The library implementing all capabilities of the gitoxide CLI" | ||
repository = "https://github.com/Byron/gitoxide" | ||
version = "0.33.0" | ||
version = "0.33.1" | ||
authors = ["Sebastian Thiel <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -44,7 +44,7 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"] | |
|
||
[dependencies] | ||
# 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 = { version = "^0.55.2", 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.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"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "gix" | |
repository = "https://github.com/Byron/gitoxide" | ||
description = "Interact with git repositories just like git would" | ||
license = "MIT OR Apache-2.0" | ||
version = "0.55.1" | ||
version = "0.55.2" | ||
authors = ["Sebastian Thiel <[email protected]>"] | ||
edition = "2021" | ||
include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] | ||
|
@@ -248,7 +248,7 @@ gix-worktree-stream = { version = "^0.6.0", path = "../gix-worktree-stream", opt | |
gix-archive = { version = "^0.6.0", path = "../gix-archive", default-features = false, optional = true } | ||
|
||
# For communication with remotes | ||
gix-protocol = { version = "^0.41.0", path = "../gix-protocol", optional = true } | ||
gix-protocol = { version = "^0.41.1", path = "../gix-protocol", optional = true } | ||
gix-transport = { version = "^0.38.0", path = "../gix-transport", optional = true } | ||
|
||
# Just to get the progress-tree feature | ||
|