From 9cd4fd71ff570015dbbd524b62939322eae0ef2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Misty=20De=20M=C3=A9o?= Date: Thu, 12 Dec 2024 15:22:59 -0800 Subject: [PATCH] release: 0.26.1 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04d36d355..eff61ef5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ Nothing Yet! +# Version 0.26.1 (2024-12-12) + +This is a bugfix release which fixes an issue where aarch64 Windows cross-compilation wouldn't work out of the box. We've updated the default configuration to ensure that this target just works without additional configuration. + +- impl @mistydemeo [fix: always cross-compile to windows via xwin](https://github.com/axodotdev/cargo-dist/pull/1635) + # Version 0.26.0 (2024-12-12) It's been slightly longer than usual since our last release, and now we're back with a slightly larger than usual release! This version brings several major new features and improvements, including the long-requested Rust cross-compilation feature and support for a few different Rust dependency version tracking formats. diff --git a/Cargo.lock b/Cargo.lock index 2389d04f9..efc36d20b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -183,7 +183,7 @@ dependencies = [ [[package]] name = "axoproject" -version = "0.26.0" +version = "0.26.1" dependencies = [ "axoasset", "axoprocess", @@ -380,7 +380,7 @@ dependencies = [ [[package]] name = "cargo-dist" -version = "0.26.0" +version = "0.26.1" dependencies = [ "axoasset", "axocli", @@ -431,7 +431,7 @@ dependencies = [ [[package]] name = "cargo-dist-schema" -version = "0.26.0" +version = "0.26.1" dependencies = [ "camino", "gazenot", diff --git a/Cargo.toml b/Cargo.toml index 60f376aec..db969c2d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,13 +12,13 @@ edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/axodotdev/cargo-dist" homepage = "https://opensource.axo.dev/cargo-dist/" -version = "0.26.0" +version = "0.26.1" rust-version = "1.74" [workspace.dependencies] # intra-workspace deps (you need to bump these versions when you cut releases too! -cargo-dist-schema = { version = "=0.26.0", path = "cargo-dist-schema" } -axoproject = { version = "=0.26.0", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] } +cargo-dist-schema = { version = "=0.26.1", path = "cargo-dist-schema" } +axoproject = { version = "=0.26.1", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] } # first-party deps axocli = { version = "0.2.0" }