diff --git a/CHANGELOG.md b/CHANGELOG.md index fc0fceb..7a891bc 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.5.0] - 2023-11-13 ### Changed - [PR#110](https://github.com/Jake-Shadle/xwin/pull/110) changed how `Ctx` is built. It was getting too complicated to support niche use cases, some of which didn't belong in a library (like reading environment variables), so this functionality has been completely removed. Instead, one must pass in a `ureq::Agent` that is fully configured how the user wants it. - [PR#110](https://github.com/Jake-Shadle/xwin/pull/110) changed the environment variable read to the `xwin` binary instead of the library, as well as its name `https_proxy` -> `HTTPS_PROXY`, and added it to an an option on the command line. @@ -158,7 +159,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.4.1...HEAD +[Unreleased]: https://github.com/Jake-Shadle/xwin/compare/0.5.0...HEAD +[0.5.0]: https://github.com/Jake-Shadle/xwin/compare/0.4.1...0.5.0 [0.4.1]: https://github.com/Jake-Shadle/xwin/compare/0.4.0...0.4.1 [0.4.0]: https://github.com/Jake-Shadle/xwin/compare/0.3.1...0.4.0 [0.3.1]: https://github.com/Jake-Shadle/xwin/compare/0.3.0...0.3.1 diff --git a/Cargo.lock b/Cargo.lock index f6bf6c2..b5f7e7f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1649,7 +1649,7 @@ dependencies = [ [[package]] name = "xwin" -version = "0.4.1" +version = "0.5.0" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 459462c..bde6185 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xwin" -version = "0.4.1" +version = "0.5.0" 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 cf95989..a203044 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.4.1"; \ + xwin_version="0.5.0"; \ 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; \