diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fc79b1..2c1be27 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.2.12] - 2023-03-31 ### Fixed - [PR#77](https://github.com/Jake-Shadle/xwin/pull/77) resolved [#76](https://github.com/Jake-Shadle/xwin/issues/76) by correctly handling the retrieval of the latest SDK version, regardless of whether it is for the Windows 10 or 11 SDK. @@ -117,7 +118,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.2.11...HEAD +[Unreleased]: https://github.com/Jake-Shadle/xwin/compare/0.2.12...HEAD +[0.2.12]: https://github.com/Jake-Shadle/xwin/compare/0.2.11...0.2.12 [0.2.11]: https://github.com/Jake-Shadle/xwin/compare/0.2.10...0.2.11 [0.2.10]: https://github.com/Jake-Shadle/xwin/compare/0.2.9...0.2.10 [0.2.9]: https://github.com/Jake-Shadle/xwin/compare/0.2.8...0.2.9 diff --git a/Cargo.lock b/Cargo.lock index d388a21..5b87081 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1626,7 +1626,7 @@ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" [[package]] name = "xwin" -version = "0.2.11" +version = "0.2.12" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 0b62595..e084606 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xwin" -version = "0.2.11" +version = "0.2.12" 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 2a09b91..d058a49 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.2.11"; \ + xwin_version="0.2.12"; \ 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; \