diff --git a/CHANGELOG.md b/CHANGELOG.md index 340bb00..13eaec4 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.1.10] - 2022-02-28 ### Fixed - [PR#34](https://github.com/Jake-Shadle/xwin/pull/34) changed some code so that it is possible to compile and run for `x86_64-pc-windows-msvc`, though this target is not explicitly support. Thanks [@messense](https://github.com/messense)! - [PR#36](https://github.com/Jake-Shadle/xwin/pull/36) updated indicatif to `0.17.0-rc.6` and pinned it to fix [#35](https://github.com/Jake-Shadle/xwin/issues/35). @@ -55,7 +56,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.1.9...HEAD +[Unreleased]: https://github.com/Jake-Shadle/xwin/compare/0.1.10...HEAD +[0.1.10]: https://github.com/Jake-Shadle/xwin/compare/0.1.9...0.1.10 [0.1.9]: https://github.com/Jake-Shadle/xwin/compare/0.1.8...0.1.9 [0.1.8]: https://github.com/Jake-Shadle/xwin/compare/0.1.7...0.1.8 [0.1.7]: https://github.com/Jake-Shadle/xwin/compare/0.1.6...0.1.7 diff --git a/Cargo.lock b/Cargo.lock index 4a0e652..e1737b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1703,7 +1703,7 @@ dependencies = [ [[package]] name = "xwin" -version = "0.1.9" +version = "0.1.10" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index f13df77..c9914b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xwin" -version = "0.1.9" +version = "0.1.10" description = "Allows downloading and repacking the MSVC and Windows SDK for cross compilation" authors = ["Jake Shadle "] edition = "2018"