-
-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release gix-object v0.26.3, gix-diff v0.26.2, gix-traverse v0.22.2, g…
…ix v0.37.0, safety bump 3 crates SAFETY BUMP: gitoxide-core v0.25.0, cargo-smart-release v0.17.0, gitoxide v0.23.0
- Loading branch information
Showing
12 changed files
with
199 additions
and
73 deletions.
There are no files selected for viewing
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.22.1" | ||
version = "0.23.0" | ||
default-run = "gix" | ||
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"] | ||
resolver = "2" | ||
|
@@ -84,9 +84,9 @@ cache-efficiency-debug = ["gix-features/cache-efficiency-debug"] | |
[dependencies] | ||
anyhow = "1.0.42" | ||
|
||
gitoxide-core = { version = "^0.24.0", path = "gitoxide-core" } | ||
gitoxide-core = { version = "^0.25.0", path = "gitoxide-core" } | ||
gix-features = { version = "^0.26.5", path = "gix-features" } | ||
gix = { version = "^0.36.1", path = "gix", default-features = false } | ||
gix = { version = "^0.37.0", path = "gix", default-features = false } | ||
time = "0.3.19" | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-smart-release" | ||
version = "0.16.1" | ||
version = "0.17.0" | ||
authors = ["Sebastian Thiel <[email protected]>"] | ||
repository = "https://github.com/Byron/gitoxide" | ||
description = "Cargo subcommand for fearlessly releasing crates in workspaces." | ||
|
@@ -24,7 +24,7 @@ test = false | |
cache-efficiency-debug = ["gix/cache-efficiency-debug"] | ||
|
||
[dependencies] | ||
gix = { version = "^0.36.1", path = "../gix", default-features = false, features = ["max-performance-safe"] } | ||
gix = { version = "^0.37.0", path = "../gix", default-features = false, features = ["max-performance-safe"] } | ||
anyhow = "1.0.42" | ||
clap = { version = "4.1.0", features = ["derive", "cargo"] } | ||
env_logger = { version = "0.10.0", default-features = false, features = ["humantime", "auto-color"] } | ||
|
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.24.0" | ||
version = "0.25.0" | ||
authors = ["Sebastian Thiel <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
edition = "2021" | ||
|
@@ -36,7 +36,7 @@ serde1 = ["gix-commitgraph/serde1", "gix/serde1", "serde_json", "serde", "bytesi | |
|
||
[dependencies] | ||
# deselect everything else (like "performance") as this should be controllable by the parent application. | ||
gix = { version = "^0.36.1", path = "../gix", default-features = false } | ||
gix = { version = "^0.37.0", path = "../gix", default-features = false } | ||
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.30.3", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static"] } | ||
gix-transport-configuration-only = { package = "gix-transport", version = "^0.25.6", path = "../gix-transport", default-features = false } | ||
gix-commitgraph = { version = "^0.13.0", path = "../gix-commitgraph" } | ||
|
Oops, something went wrong.