From 6768d2ecf4a54a900ee456b3d6a9149ec781f22d Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Tue, 12 Sep 2023 10:12:39 +0200 Subject: [PATCH] Release xwin 0.3.1 --- 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 3c27830..a946aa9 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.3.1] - 2023-09-12 ### Changed - [PR#99](https://github.com/Jake-Shadle/xwin/pull/99) changed the default VS manifest version from 16 -> 17. You can preserve the old behavior by passing `--manifest-version 16` on the cmd line. @@ -143,7 +144,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.3.0...HEAD +[Unreleased]: https://github.com/Jake-Shadle/xwin/compare/0.3.1...HEAD +[0.3.1]: https://github.com/Jake-Shadle/xwin/compare/0.3.0...0.3.1 [0.3.0]: https://github.com/Jake-Shadle/xwin/compare/0.2.15...0.3.0 [0.2.15]: https://github.com/Jake-Shadle/xwin/compare/0.2.14...0.2.15 [0.2.14]: https://github.com/Jake-Shadle/xwin/compare/0.2.13...0.2.14 diff --git a/Cargo.lock b/Cargo.lock index 0679520..05d539d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1659,7 +1659,7 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "xwin" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index da4a9f5..6243a5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xwin" -version = "0.3.0" +version = "0.3.1" 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 6ac0b8a..9141f36 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.3.0"; \ + xwin_version="0.3.1"; \ 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; \