From da47b0ab663f8b777b1b8315ec8b7772cd88403d Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Wed, 21 Aug 2024 17:45:49 +0200 Subject: [PATCH] Release xwin 0.6.4 --- CHANGELOG.md | 4 +++- Cargo.lock | 2 +- Cargo.toml | 2 +- xwin.dockerfile | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d18c5c7..181b99b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.6.4] - 2024-08-21 ### Fixed - [PR#136](https://github.com/Jake-Shadle/xwin/pull/136) fixed an issue introduced in [PR#131](https://github.com/Jake-Shadle/xwin/pull/131) where symlink disabling when a case-insensitive file system was detected was...not being respected. At all. @@ -186,7 +187,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial implementation if downloading, unpacking, and splatting of the CRT and Windows SDK. This first pass focused on targeting x86_64 Desktop, so targeting the Windows Store or other architectures is not guaranteed to work. -[Unreleased]: https://github.com/Jake-Shadle/xwin/compare/0.6.3...HEAD +[Unreleased]: https://github.com/Jake-Shadle/xwin/compare/0.6.4...HEAD +[0.6.4]: https://github.com/Jake-Shadle/xwin/compare/0.6.3...0.6.4 [0.6.3]: https://github.com/Jake-Shadle/xwin/compare/0.6.2...0.6.3 [0.6.2]: https://github.com/Jake-Shadle/xwin/compare/0.6.1...0.6.2 [0.6.1]: https://github.com/Jake-Shadle/xwin/compare/0.6.0...0.6.1 diff --git a/Cargo.lock b/Cargo.lock index ee6c6e1..f583c01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1679,7 +1679,7 @@ dependencies = [ [[package]] name = "xwin" -version = "0.6.3" +version = "0.6.4" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 40b8a21..3be8634 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xwin" -version = "0.6.3" +version = "0.6.4" description = "Allows downloading and repacking the MSVC CRT and Windows SDK for cross compilation" authors = ["Jake Shadle "] edition = "2021" diff --git a/xwin.dockerfile b/xwin.dockerfile index d6823b0..106d522 100644 --- a/xwin.dockerfile +++ b/xwin.dockerfile @@ -47,7 +47,7 @@ RUN set -eux; \ RUN rustup target add x86_64-pc-windows-msvc RUN set -eux; \ - xwin_version="0.6.3"; \ + xwin_version="0.6.4"; \ xwin_prefix="xwin-$xwin_version-x86_64-unknown-linux-musl"; \ # Install xwin to cargo/bin via github release. Note you could also just use `cargo install xwin`. curl --fail -L https://github.com/Jake-Shadle/xwin/releases/download/$xwin_version/$xwin_prefix.tar.gz | tar -xzv -C /usr/local/cargo/bin --strip-components=1 $xwin_prefix/xwin; \