-
-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release git-config v0.2.1, git-diff v0.15.0, git-traverse v0.14.0, gi…
…t-pack v0.18.0, git-odb v0.28.0, git-ref v0.12.1, git-revision v0.1.0, git-repository v0.16.0, gitoxide-core v0.14.0, gitoxide v0.12.0, safety bump 6 crates SAFETY BUMP: git-pack v0.18.0, git-odb v0.28.0, git-repository v0.16.0, gitoxide-core v0.14.0, gitoxide v0.12.0, cargo-smart-release v0.10.0
- Loading branch information
Showing
25 changed files
with
492 additions
and
50 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 = "2018" | ||
license = "MIT OR Apache-2.0" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
default-run = "gix" | ||
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"] | ||
resolver = "2" | ||
|
@@ -82,9 +82,9 @@ cache-efficiency-debug = ["git-features/cache-efficiency-debug"] | |
[dependencies] | ||
anyhow = "1.0.42" | ||
|
||
gitoxide-core = { version = "^0.13.0", path = "gitoxide-core" } | ||
gitoxide-core = { version = "^0.14.0", path = "gitoxide-core" } | ||
git-features = { version = "^0.20.0", path = "git-features" } | ||
git-repository = { version = "^0.15.0", path = "git-repository", default-features = false } | ||
git-repository = { version = "^0.16.0", path = "git-repository", default-features = false } | ||
|
||
git-transport-for-configuration-only = { package = "git-transport", optional = true, version = "^0.16.0", path = "git-transport" } | ||
|
||
|
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.9.0" | ||
version = "0.10.0" | ||
authors = ["Sebastian Thiel <[email protected]>"] | ||
repository = "https://github.com/Byron/gitoxide" | ||
description = "Cargo subcommand for fearlessly releasing crates in workspaces." | ||
|
@@ -26,7 +26,7 @@ test = false | |
cache-efficiency-debug = ["git-repository/cache-efficiency-debug"] | ||
|
||
[dependencies] | ||
git-repository = { version = "^0.15.0", path = "../git-repository", features = ["unstable"] } | ||
git-repository = { version = "^0.16.0", path = "../git-repository", features = ["unstable"] } | ||
anyhow = "1.0.42" | ||
clap = { version = "3.0.0", features = ["derive", "cargo"] } | ||
env_logger = { version = "0.9.0", default-features = false, features = ["humantime", "termcolor", "atty"] } | ||
|
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "git-odb" | ||
version = "0.27.0" | ||
version = "0.28.0" | ||
repository = "https://github.com/Byron/gitoxide" | ||
authors = ["Sebastian Thiel <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
|
@@ -34,7 +34,7 @@ git-features = { version = "^0.20.0", path = "../git-features", features = ["rus | |
git-hash = { version = "^0.9.3", path = "../git-hash" } | ||
git-quote = { version = "^0.2.0", path = "../git-quote" } | ||
git-object = { version = "^0.18.0", path = "../git-object" } | ||
git-pack = { version = "^0.17.0", path = "../git-pack" } | ||
git-pack = { version = "^0.18.0", path = "../git-pack" } | ||
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]} | ||
|
||
tempfile = "3.1.0" | ||
|
Oops, something went wrong.