Skip to content

Commit e8b3b41

Browse files
authored
Merge pull request #1701 from GitoxideLabs/release
Release
2 parents 54ea266 + 4000197 commit e8b3b41

File tree

106 files changed

+25974
-24146
lines changed

Some content is hidden

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

106 files changed

+25974
-24146
lines changed

CHANGELOG.md

+728-693
Large diffs are not rendered by default.

Cargo.lock

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

Cargo.toml

+4-4
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.38.0"
10+
version = "0.39.0"
1111
default-run = "gix"
1212
include = ["src/**/*", "/build.rs", "LICENSE-*", "README.md"]
1313
resolver = "2"
@@ -169,9 +169,9 @@ gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"]
169169
[dependencies]
170170
anyhow = "1.0.42"
171171

172-
gitoxide-core = { version = "^0.42.0", path = "gitoxide-core" }
173-
gix-features = { version = "^0.39.0", path = "gix-features" }
174-
gix = { version = "^0.67.0", path = "gix", default-features = false }
172+
gitoxide-core = { version = "^0.43.0", path = "gitoxide-core" }
173+
gix-features = { version = "^0.39.1", path = "gix-features" }
174+
gix = { version = "^0.68.0", path = "gix", default-features = false }
175175

176176
clap = { version = "4.1.1", features = ["derive", "cargo"] }
177177
clap_complete = "4.4.3"

gitoxide-core/CHANGELOG.md

+1,569-1,520
Large diffs are not rendered by default.

gitoxide-core/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ lints.workspace = true
44
name = "gitoxide-core"
55
description = "The library implementing all capabilities of the gitoxide CLI"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
7-
version = "0.42.0"
7+
version = "0.43.0"
88
authors = ["Sebastian Thiel <[email protected]>"]
99
license = "MIT OR Apache-2.0"
1010
edition = "2021"
@@ -49,12 +49,12 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"]
4949

5050
[dependencies]
5151
# deselect everything else (like "performance") as this should be controllable by the parent application.
52-
gix = { version = "^0.67.0", path = "../gix", default-features = false, features = ["merge", "blob-diff", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status", "dirwalk"] }
53-
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.54.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.43.0", path = "../gix-transport", default-features = false }
55-
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.16.0", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }
56-
gix-status = { version = "^0.14.0", path = "../gix-status" }
57-
gix-fsck = { version = "^0.7.0", path = "../gix-fsck" }
52+
gix = { version = "^0.68.0", path = "../gix", default-features = false, features = ["merge", "blob-diff", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status", "dirwalk"] }
53+
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.55.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.43.1", path = "../gix-transport", default-features = false }
55+
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.17.0", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }
56+
gix-status = { version = "^0.15.0", path = "../gix-status" }
57+
gix-fsck = { version = "^0.8.0", path = "../gix-fsck" }
5858
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
5959
anyhow = "1.0.42"
6060
thiserror = "2.0.0"
@@ -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.28.0", path = "../gix-url", optional = true }
73+
gix-url = { version = "^0.28.1", path = "../gix-url", optional = true }
7474
jwalk = { version = "0.8.0", optional = true }
7575

7676
# for 'hours'

gix-actor/CHANGELOG.md

+405-377
Large diffs are not rendered by default.

gix-actor/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-actor"
5-
version = "0.33.0"
5+
version = "0.33.1"
66
description = "A way to identify git actors"
77
authors = ["Sebastian Thiel <[email protected]>"]
88
repository = "https://github.com/GitoxideLabs/gitoxide"
@@ -19,7 +19,7 @@ doctest = false
1919
serde = ["dep:serde", "bstr/serde", "gix-date/serde"]
2020

2121
[dependencies]
22-
gix-date = { version = "^0.9.1", path = "../gix-date" }
22+
gix-date = { version = "^0.9.2", path = "../gix-date" }
2323
gix-utils = { version = "^0.1.13", path = "../gix-utils" }
2424

2525
thiserror = "2.0.0"

gix-archive/CHANGELOG.md

+171-137
Large diffs are not rendered by default.

gix-archive/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-archive"
5-
version = "0.16.0"
5+
version = "0.17.0"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "archive generation from of a worktree stream"
@@ -27,10 +27,10 @@ zip = ["dep:zip"]
2727

2828

2929
[dependencies]
30-
gix-worktree-stream = { version = "^0.16.0", path = "../gix-worktree-stream" }
31-
gix-object = { version = "^0.45.0", path = "../gix-object" }
32-
gix-path = { version = "^0.10.12", path = "../gix-path", optional = true }
33-
gix-date = { version = "^0.9.1", path = "../gix-date" }
30+
gix-worktree-stream = { version = "^0.17.0", path = "../gix-worktree-stream" }
31+
gix-object = { version = "^0.46.0", path = "../gix-object" }
32+
gix-path = { version = "^0.10.13", path = "../gix-path", optional = true }
33+
gix-date = { version = "^0.9.2", path = "../gix-date" }
3434

3535
flate2 = { version = "1.0.33", optional = true }
3636
zip = { version = "2.1.0", optional = true, default-features = false, features = ["deflate"] }

0 commit comments

Comments
 (0)