Skip to content

Commit 56c005b

Browse files
committed
prepare for git-tempfile release
1 parent 3522cba commit 56c005b

File tree

17 files changed

+259
-222
lines changed

17 files changed

+259
-222
lines changed

Cargo.lock

+105-105
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repository = "https://github.com/Byron/gitoxide"
55
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
66
edition = "2021"
77
license = "MIT OR Apache-2.0"
8-
version = "0.23.0"
8+
version = "0.24.0"
99
default-run = "gix"
1010
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
1111
resolver = "2"
@@ -87,9 +87,9 @@ cache-efficiency-debug = ["gix-features/cache-efficiency-debug"]
8787
[dependencies]
8888
anyhow = "1.0.42"
8989

90-
gitoxide-core = { version = "^0.25.0", path = "gitoxide-core" }
90+
gitoxide-core = { version = "^0.26.0", path = "gitoxide-core" }
9191
gix-features = { version = "^0.26.5", path = "gix-features" }
92-
gix = { version = "^0.37.2", path = "gix", default-features = false }
92+
gix = { version = "^0.38.0", path = "gix", default-features = false }
9393
time = "0.3.19"
9494

9595
clap = { version = "4.1.1", features = ["derive", "cargo"] }

cargo-smart-release/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-smart-release"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
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 = ["gix/cache-efficiency-debug"]
2525

2626
[dependencies]
27-
gix = { version = "^0.37.2", path = "../gix", default-features = false, features = ["max-performance-safe"] }
27+
gix = { version = "^0.38.0", path = "../gix", default-features = false, features = ["max-performance-safe"] }
2828
anyhow = "1.0.42"
2929
clap = { version = "4.1.0", features = ["derive", "cargo"] }
3030
env_logger = { version = "0.10.0", default-features = false, features = ["humantime", "auto-color"] }

gitoxide-core/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "gitoxide-core"
33
description = "The library implementing all capabilities of the gitoxide CLI"
44
repository = "https://github.com/Byron/gitoxide"
5-
version = "0.25.0"
5+
version = "0.26.0"
66
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
77
license = "MIT/Apache-2.0"
88
edition = "2021"
@@ -38,8 +38,8 @@ serde1 = ["gix-commitgraph/serde1", "gix/serde1", "serde_json", "serde", "bytesi
3838

3939
[dependencies]
4040
# deselect everything else (like "performance") as this should be controllable by the parent application.
41-
gix = { version = "^0.37.2", path = "../gix", default-features = false }
42-
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"] }
41+
gix = { version = "^0.38.0", path = "../gix", default-features = false }
42+
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.31.0", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static"] }
4343
gix-transport-configuration-only = { package = "gix-transport", version = "^0.25.6", path = "../gix-transport", default-features = false }
4444
gix-commitgraph = { version = "^0.13.1", path = "../gix-commitgraph" }
4545
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

gix-config/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-config"
3-
version = "0.16.3"
3+
version = "0.17.0"
44
repository = "https://github.com/Byron/gitoxide"
55
description = "A gix-config file parser and editor from the gitoxide project"
66
license = "MIT OR Apache-2.0"
@@ -21,7 +21,7 @@ gix-features = { version = "^0.26.5", path = "../gix-features"}
2121
gix-config-value = { version = "^0.10.1", path = "../gix-config-value" }
2222
gix-path = { version = "^0.7.2", path = "../gix-path" }
2323
gix-sec = { version = "^0.6.2", path = "../gix-sec" }
24-
gix-ref = { version = "^0.24.1", path = "../gix-ref" }
24+
gix-ref = { version = "^0.25.0", path = "../gix-ref" }
2525
gix-glob = { version = "^0.5.5", path = "../gix-glob" }
2626

2727
nom = { version = "7", default_features = false, features = [ "std" ] }

gix-discover/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-discover"
3-
version = "0.13.1"
3+
version = "0.14.0"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT/Apache-2.0"
66
description = "Discover git repositories and check if a directory is a git repository"
@@ -15,7 +15,7 @@ doctest = false
1515
[dependencies]
1616
gix-sec = { version = "^0.6.2", path = "../gix-sec" }
1717
gix-path = { version = "^0.7.2", path = "../gix-path" }
18-
gix-ref = { version = "^0.24.1", path = "../gix-ref" }
18+
gix-ref = { version = "^0.25.0", path = "../gix-ref" }
1919
gix-hash = { version = "^0.10.3", path = "../gix-hash" }
2020

2121
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }

gix-index/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-index"
3-
version = "0.12.4"
3+
version = "0.13.0"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT/Apache-2.0"
66
description = "A work-in-progress crate of the gitoxide project dedicated implementing the git index file"
@@ -25,7 +25,7 @@ gix-hash = { version = "^0.10.3", path = "../gix-hash" }
2525
gix-bitmap = { version = "^0.2.1", path = "../gix-bitmap" }
2626
gix-object = { version = "^0.26.2", path = "../gix-object" }
2727
gix-traverse = { version = "^0.22.1", path = "../gix-traverse" }
28-
gix-lock = { version = "^3.0.0", path = "../gix-lock" }
28+
gix-lock = { version = "^4.0.0", path = "../gix-lock" }
2929

3030
thiserror = "1.0.32"
3131
memmap2 = "0.5.0"

gix-index/tests/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ internal-testing-to-avoid-being-run-by-cargo-test-all = []
3030
[dependencies]
3131

3232
[dev-dependencies]
33-
gix-index = { version = "^0.12.1", path = ".." }
33+
gix-index = { version = "^0.13.0", path = ".." }
3434
gix-features = { version = "^0.26.1", path = "../../gix-features", features = ["rustsha1", "progress"] }
3535
gix-testtools = { path = "../../tests/tools"}
3636
gix = { path = "../../gix"}

gix-lock/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-lock"
3-
version = "3.0.2"
3+
version = "4.0.0"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT/Apache-2.0"
66
description = "A git-style lock-file implementation"
@@ -15,7 +15,7 @@ test = true
1515

1616
[dependencies]
1717
fastrand = "1.5.0"
18-
gix-tempfile = { version = "^3.0.0", path = "../gix-tempfile" }
18+
gix-tempfile = { version = "^4.0.0", path = "../gix-tempfile" }
1919
quick-error = "2.0.0"
2020

2121
[dev-dependencies]

gix-odb/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-odb"
3-
version = "0.40.2"
3+
version = "0.41.0"
44
repository = "https://github.com/Byron/gitoxide"
55
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
66
license = "MIT/Apache-2.0"
@@ -33,7 +33,7 @@ gix-hash = { version = "^0.10.2", path = "../gix-hash" }
3333
gix-path = { version = "^0.7.1", path = "../gix-path" }
3434
gix-quote = { version = "^0.4.1", path = "../gix-quote" }
3535
gix-object = { version = "^0.26.1", path = "../gix-object" }
36-
gix-pack = { version = "^0.30.2", path = "../gix-pack" }
36+
gix-pack = { version = "^0.31.0", path = "../gix-pack" }
3737
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
3838

3939
tempfile = "3.1.0"

gix-pack/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-pack"
3-
version = "0.30.3"
3+
version = "0.31.0"
44
repository = "https://github.com/Byron/gitoxide"
55
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
66
license = "MIT/Apache-2.0"
@@ -52,7 +52,7 @@ dashmap = "5.1.0"
5252

5353

5454
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
55-
gix-tempfile = { version = "^3.0.0", path = "../gix-tempfile" }
55+
gix-tempfile = { version = "^4.0.0", path = "../gix-tempfile" }
5656

5757
[dev-dependencies]
5858
gix-testtools = { path = "../tests/tools"}

gix-ref/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-ref"
3-
version = "0.24.1"
3+
version = "0.25.0"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT/Apache-2.0"
66
description = "A crate to handle git references"
@@ -25,8 +25,8 @@ gix-hash = { version = "^0.10.3", path = "../gix-hash" }
2525
gix-object = { version = "^0.26.2", path = "../gix-object" }
2626
gix-validate = { version = "^0.7.3", path = "../gix-validate" }
2727
gix-actor = { version = "^0.17.2", path = "../gix-actor" }
28-
gix-lock = { version = "^3.0.0", path = "../gix-lock" }
29-
gix-tempfile = { version = "^3.0.0", path = "../gix-tempfile" }
28+
gix-lock = { version = "^4.0.0", path = "../gix-lock" }
29+
gix-tempfile = { version = "^4.0.0", path = "../gix-tempfile" }
3030

3131
thiserror = "1.0.34"
3232
nom = { version = "7", default-features = false, features = ["std"]}

0 commit comments

Comments
 (0)