diff --git a/CHANGELOG.md b/CHANGELOG.md index 309ac34..edce54c 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.0] - 2023-09-12 ### Changed - [PR#93](https://github.com/Jake-Shadle/xwin/pull/93) added the ability to specify a download timeout for each individual download, and changed the default from infinite to 60 seconds, so that xwin will error if the remote HTTP server is slow/unresponsive. Thanks [@dragonmux](https://github.com/dragonmux)! @@ -136,7 +137,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.15...HEAD +[Unreleased]: https://github.com/Jake-Shadle/xwin/compare/0.3.0...HEAD +[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 [0.2.13]: https://github.com/Jake-Shadle/xwin/compare/0.2.12...0.2.13 diff --git a/Cargo.lock b/Cargo.lock index dfa6f3a..0679520 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1659,7 +1659,7 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "xwin" -version = "0.2.15" +version = "0.3.0" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 4593ad3..8484eef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xwin" -version = "0.2.15" +version = "0.3.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 58a266d..6ac0b8a 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.15"; \ + xwin_version="0.3.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; \