Skip to content

Commit 5f44d42

Browse files
committed
bump all prior pratch levels to majors
That way breakage upon release can be avoided, for sure.
1 parent cc5b696 commit 5f44d42

File tree

54 files changed

+360
-360
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+360
-360
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repository = "https://github.com/GitoxideLabs/gitoxide"
77
authors = ["Sebastian Thiel <[email protected]>"]
88
edition = "2021"
99
license = "MIT OR Apache-2.0"
10-
version = "0.43.0"
10+
version = "0.44.0"
1111
rust-version = "1.74"
1212
default-run = "gix"
1313
include = ["src/**/*", "/build.rs", "LICENSE-*", "README.md"]

gitoxide-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"]
5151
# deselect everything else (like "performance") as this should be controllable by the parent application.
5252
gix = { version = "^0.72.0", path = "../gix", default-features = false, features = ["merge", "blob-diff", "blame", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status", "dirwalk"] }
5353
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.59.0", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static", "generate", "streaming-input"] }
54-
gix-transport-configuration-only = { package = "gix-transport", version = "^0.46.1", path = "../gix-transport", default-features = false }
54+
gix-transport-configuration-only = { package = "gix-transport", version = "^0.47.0", path = "../gix-transport", default-features = false }
5555
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.21.0", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }
5656
gix-status = { version = "^0.19.0", path = "../gix-status" }
5757
gix-fsck = { version = "^0.11.0", path = "../gix-fsck" }
@@ -70,7 +70,7 @@ futures-io = { version = "0.3.16", optional = true }
7070
blocking = { version = "1.0.2", optional = true }
7171

7272
# for 'organize' functionality
73-
gix-url = { version = "^0.30.1", path = "../gix-url", optional = true }
73+
gix-url = { version = "^0.31.0", path = "../gix-url", optional = true }
7474
jwalk = { version = "0.8.0", optional = true }
7575

7676
# for 'hours'

gix-actor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = ["dep:serde", "bstr/serde", "gix-date/serde"]
2020

2121
[dependencies]
2222
gix-date = { version = "^0.10.0", path = "../gix-date" }
23-
gix-utils = { version = "^0.2.1", path = "../gix-utils" }
23+
gix-utils = { version = "^0.3.0", path = "../gix-utils" }
2424

2525
thiserror = "2.0.0"
2626
bstr = { version = "1.12.0", default-features = false, features = [

gix-attributes/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-attributes"
5-
version = "0.25.1"
5+
version = "0.26.0"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "A crate of the gitoxide project dealing .gitattributes files"
@@ -20,8 +20,8 @@ serde = ["dep:serde", "bstr/serde", "gix-glob/serde", "kstring/serde"]
2020

2121
[dependencies]
2222
gix-path = { version = "^0.10.16", path = "../gix-path" }
23-
gix-quote = { version = "^0.5.1", path = "../gix-quote" }
24-
gix-glob = { version = "^0.19.1", path = "../gix-glob" }
23+
gix-quote = { version = "^0.6.0", path = "../gix-quote" }
24+
gix-glob = { version = "^0.20.0", path = "../gix-glob" }
2525
gix-trace = { version = "^0.1.12", path = "../gix-trace" }
2626

2727
bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }

gix-blame/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ rust-version = "1.70"
1414
doctest = false
1515

1616
[dependencies]
17-
gix-commitgraph = { version = "^0.27.1", path = "../gix-commitgraph" }
17+
gix-commitgraph = { version = "^0.28.0", path = "../gix-commitgraph" }
1818
gix-revwalk = { version = "^0.20.0", path = "../gix-revwalk" }
1919
gix-trace = { version = "^0.1.12", path = "../gix-trace" }
2020
gix-date = { version = "^0.10.0", path = "../gix-date" }
2121
gix-diff = { version = "^0.52.0", path = "../gix-diff", default-features = false, features = ["blob"] }
2222
gix-object = { version = "^0.49.0", path = "../gix-object" }
23-
gix-hash = { version = "^0.17.1", path = "../gix-hash" }
24-
gix-worktree = { version = "^0.40.1", path = "../gix-worktree", default-features = false, features = ["attributes"] }
23+
gix-hash = { version = "^0.18.0", path = "../gix-hash" }
24+
gix-worktree = { version = "^0.41.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
2525
gix-traverse = { version = "^0.46.0", path = "../gix-traverse" }
2626

2727
smallvec = "1.15.0"

gix-command/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-command"
5-
version = "0.5.1"
5+
version = "0.6.0"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "A crate of the gitoxide project handling internal git command execution"
@@ -17,7 +17,7 @@ doctest = false
1717
[dependencies]
1818
gix-trace = { version = "^0.1.12", path = "../gix-trace" }
1919
gix-path = { version = "^0.10.16", path = "../gix-path" }
20-
gix-quote = { version = "^0.5.1", path = "../gix-quote" }
20+
gix-quote = { version = "^0.6.0", path = "../gix-quote" }
2121

2222
bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }
2323
shell-words = "1.0"

gix-commitgraph/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-commitgraph"
5-
version = "0.27.1"
5+
version = "0.28.0"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
documentation = "https://git-scm.com/docs/commit-graph"
88
license = "MIT OR Apache-2.0"
@@ -20,7 +20,7 @@ doctest = false
2020
serde = ["dep:serde", "gix-hash/serde", "bstr/serde"]
2121

2222
[dependencies]
23-
gix-hash = { version = "^0.17.1", path = "../gix-hash" }
23+
gix-hash = { version = "^0.18.0", path = "../gix-hash" }
2424
gix-chunk = { version = "^0.4.11", path = "../gix-chunk" }
2525

2626
bstr = { version = "1.12.0", default-features = false, features = ["std"] }

gix-config-value/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-config-value"
5-
version = "0.14.13"
5+
version = "0.15.0"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "A crate of the gitoxide project providing git-config value parsing"

gix-config/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ serde = ["dep:serde", "bstr/serde", "gix-sec/serde", "gix-ref/serde", "gix-glob/
2020

2121
[dependencies]
2222
gix-features = { version = "^0.42.0", path = "../gix-features" }
23-
gix-config-value = { version = "^0.14.13", path = "../gix-config-value" }
23+
gix-config-value = { version = "^0.15.0", path = "../gix-config-value" }
2424
gix-path = { version = "^0.10.16", path = "../gix-path" }
25-
gix-sec = { version = "^0.10.13", path = "../gix-sec" }
25+
gix-sec = { version = "^0.11.0", path = "../gix-sec" }
2626
gix-ref = { version = "^0.52.0", path = "../gix-ref" }
27-
gix-glob = { version = "^0.19.1", path = "../gix-glob" }
27+
gix-glob = { version = "^0.20.0", path = "../gix-glob" }
2828

2929
winnow = { version = "0.7.7", features = ["simd"] }
3030
memchr = "2"

0 commit comments

Comments
 (0)