Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #1701

Merged
merged 5 commits into from
Nov 24, 2024
Merged

Release #1701

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,421 changes: 728 additions & 693 deletions CHANGELOG.md

Large diffs are not rendered by default.

662 changes: 331 additions & 331 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repository = "https://github.com/GitoxideLabs/gitoxide"
authors = ["Sebastian Thiel <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
version = "0.38.0"
version = "0.39.0"
default-run = "gix"
include = ["src/**/*", "/build.rs", "LICENSE-*", "README.md"]
resolver = "2"
Expand Down Expand Up @@ -169,9 +169,9 @@ gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"]
[dependencies]
anyhow = "1.0.42"

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

clap = { version = "4.1.1", features = ["derive", "cargo"] }
clap_complete = "4.4.3"
Expand Down
3,089 changes: 1,569 additions & 1,520 deletions gitoxide-core/CHANGELOG.md

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions gitoxide-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lints.workspace = true
name = "gitoxide-core"
description = "The library implementing all capabilities of the gitoxide CLI"
repository = "https://github.com/GitoxideLabs/gitoxide"
version = "0.42.0"
version = "0.43.0"
authors = ["Sebastian Thiel <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -49,12 +49,12 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"]

[dependencies]
# deselect everything else (like "performance") as this should be controllable by the parent application.
gix = { version = "^0.67.0", path = "../gix", default-features = false, features = ["merge", "blob-diff", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status", "dirwalk"] }
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"] }
gix-transport-configuration-only = { package = "gix-transport", version = "^0.43.0", path = "../gix-transport", default-features = false }
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.16.0", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }
gix-status = { version = "^0.14.0", path = "../gix-status" }
gix-fsck = { version = "^0.7.0", path = "../gix-fsck" }
gix = { version = "^0.68.0", path = "../gix", default-features = false, features = ["merge", "blob-diff", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status", "dirwalk"] }
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"] }
gix-transport-configuration-only = { package = "gix-transport", version = "^0.43.1", path = "../gix-transport", default-features = false }
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.17.0", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }
gix-status = { version = "^0.15.0", path = "../gix-status" }
gix-fsck = { version = "^0.8.0", path = "../gix-fsck" }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
anyhow = "1.0.42"
thiserror = "2.0.0"
Expand All @@ -70,7 +70,7 @@ futures-io = { version = "0.3.16", optional = true }
blocking = { version = "1.0.2", optional = true }

# for 'organize' functionality
gix-url = { version = "^0.28.0", path = "../gix-url", optional = true }
gix-url = { version = "^0.28.1", path = "../gix-url", optional = true }
jwalk = { version = "0.8.0", optional = true }

# for 'hours'
Expand Down
782 changes: 405 additions & 377 deletions gix-actor/CHANGELOG.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions gix-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lints.workspace = true

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

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

thiserror = "2.0.0"
Expand Down
308 changes: 171 additions & 137 deletions gix-archive/CHANGELOG.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions gix-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lints.workspace = true

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


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

flate2 = { version = "1.0.33", optional = true }
zip = { version = "2.1.0", optional = true, default-features = false, features = ["deflate"] }
Expand Down
Loading
Loading