Skip to content

Commit 1d4600a

Browse files
committed
Release git-features v0.22.4, git-url v0.8.0, safety bump 4 crates
SAFETY BUMP: git-repository v0.24.0, git-transport v0.20.0, cargo-smart-release v0.13.0, git-protocol v0.20.0
1 parent 6446b39 commit 1d4600a

File tree

24 files changed

+51
-48
lines changed

24 files changed

+51
-48
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ cache-efficiency-debug = ["git-features/cache-efficiency-debug"]
8080
anyhow = "1.0.42"
8181

8282
gitoxide-core = { version = "^0.18.0", path = "gitoxide-core" }
83-
git-features = { version = "^0.22.3", path = "git-features" }
84-
git-repository = { version = "^0.23.1", path = "git-repository", default-features = false }
83+
git-features = { version = "^0.22.4", path = "git-features" }
84+
git-repository = { version = "^0.24.0", path = "git-repository", default-features = false }
8585

86-
git-transport-for-configuration-only = { package = "git-transport", optional = true, version = "^0.19.3", path = "git-transport" }
86+
git-transport-for-configuration-only = { package = "git-transport", optional = true, version = "^0.20.0", path = "git-transport" }
8787

8888
clap = { version = "3.2.5", features = ["derive", "cargo"] }
8989
prodash = { version = "19.0.0", optional = true, default-features = false }

cargo-smart-release/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-smart-release"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
authors = ["Sebastian Thiel <[email protected]>"]
55
repository = "https://github.com/Byron/gitoxide"
66
description = "Cargo subcommand for fearlessly releasing crates in workspaces."
@@ -24,7 +24,7 @@ test = false
2424
cache-efficiency-debug = ["git-repository/cache-efficiency-debug"]
2525

2626
[dependencies]
27-
git-repository = { version = "^0.23.1", path = "../git-repository", default-features = false, features = ["unstable", "max-performance-safe"] }
27+
git-repository = { version = "^0.24.0", path = "../git-repository", default-features = false, features = ["unstable", "max-performance-safe"] }
2828
anyhow = "1.0.42"
2929
clap = { version = "3.2.5", features = ["derive", "cargo"] }
3030
env_logger = { version = "0.9.0", default-features = false, features = ["humantime", "termcolor", "atty"] }

experiments/diffing/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99

1010
[dependencies]
1111
anyhow = "1"
12-
git-repository = { version = "^0.23.1", path = "../../git-repository", features = ["unstable"] }
13-
git-features-for-config = { package = "git-features", version = "^0.22.3", path = "../../git-features", features = ["cache-efficiency-debug"] }
12+
git-repository = { version = "^0.24.0", path = "../../git-repository", features = ["unstable"] }
13+
git-features-for-config = { package = "git-features", version = "^0.22.4", path = "../../git-features", features = ["cache-efficiency-debug"] }
1414
git2 = "0.14"
1515
rayon = "1.5.0"

experiments/object-access/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ publish = false
1111

1212
[dependencies]
1313
anyhow = "1"
14-
git-repository = { path = "../../git-repository", version = "^0.23.1", features = ["unstable"] }
14+
git-repository = { path = "../../git-repository", version = "^0.24.0", features = ["unstable"] }
1515
git2 = "0.14"
1616
rayon = "1.5.0"
1717
parking_lot = { version = "0.12.0", default-features = false }

experiments/traversal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99

1010
[dependencies]
1111
anyhow = "1"
12-
git-repository = { version = "^0.23.1", path = "../../git-repository", features = ["unstable"] }
12+
git-repository = { version = "^0.24.0", path = "../../git-repository", features = ["unstable"] }
1313
git2 = "0.14"
1414
rayon = "1.5.0"
1515
dashmap = "5.1.0"

git-actor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ doctest = false
1616
serde1 = ["serde", "bstr/serde1", "git-date/serde1"]
1717

1818
[dependencies]
19-
git-features = { version = "^0.22.2", path = "../git-features", optional = true }
19+
git-features = { version = "^0.22.4", path = "../git-features", optional = true }
2020
git-date = { version = "^0.1.0", path = "../git-date" }
2121

2222
quick-error = "2.0.0"

git-attributes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ doctest = false
1616
serde1 = ["serde", "bstr/serde1", "git-glob/serde1", "compact_str/serde"]
1717

1818
[dependencies]
19-
git-features = { version = "^0.22.3", path = "../git-features" }
19+
git-features = { version = "^0.22.4", path = "../git-features" }
2020
git-path = { version = "^0.4.1", path = "../git-path" }
2121
git-quote = { version = "^0.2.1", path = "../git-quote" }
2222
git-glob = { version = "^0.3.2", path = "../git-glob" }

git-commitgraph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ doctest = false
1717
serde1 = ["serde", "git-hash/serde1", "bstr/serde1"]
1818

1919
[dependencies]
20-
git-features = { version = "^0.22.3", path = "../git-features", features = ["rustsha1"] }
20+
git-features = { version = "^0.22.4", path = "../git-features", features = ["rustsha1"] }
2121
git-hash = { version = "^0.9.9", path = "../git-hash" }
2222
git-chunk = { version = "^0.3.1", path = "../git-chunk" }
2323

git-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
1515
serde1 = ["serde", "bstr/serde1", "git-sec/serde1", "git-ref/serde1", "git-glob/serde1"]
1616

1717
[dependencies]
18-
git-features = { version = "^0.22.3", path = "../git-features"}
18+
git-features = { version = "^0.22.4", path = "../git-features"}
1919
git-path = { version = "^0.4.1", path = "../git-path" }
2020
git-sec = { version = "^0.3.1", path = "../git-sec" }
2121
git-ref = { version = "^0.15.4", path = "../git-ref" }

0 commit comments

Comments
 (0)