mirror of
https://github.com/Jake-Shadle/xwin
synced 2026-06-08 11:22:36 +00:00
Release xwin 0.7.0
This commit is contained in:
+3
-1
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
<!-- next-header -->
|
||||
## [Unreleased] - ReleaseDate
|
||||
## [0.7.0] - 2026-01-08
|
||||
### Changed
|
||||
- [PR#169](https://github.com/Jake-Shadle/xwin/pull/169) updated crates.
|
||||
|
||||
@@ -209,7 +210,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.
|
||||
|
||||
<!-- next-url -->
|
||||
[Unreleased]: https://github.com/Jake-Shadle/xwin/compare/0.6.7...HEAD
|
||||
[Unreleased]: https://github.com/Jake-Shadle/xwin/compare/0.7.0...HEAD
|
||||
[0.7.0]: https://github.com/Jake-Shadle/xwin/compare/0.6.7...0.7.0
|
||||
[0.6.7]: https://github.com/Jake-Shadle/xwin/compare/0.6.6...0.6.7
|
||||
[0.6.6]: https://github.com/Jake-Shadle/xwin/compare/0.6.5...0.6.6
|
||||
[0.6.5]: https://github.com/Jake-Shadle/xwin/compare/0.6.4...0.6.5
|
||||
|
||||
Generated
+1
-1
@@ -1950,7 +1950,7 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
||||
|
||||
[[package]]
|
||||
name = "xwin"
|
||||
version = "0.6.7"
|
||||
version = "0.7.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"bytes",
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "xwin"
|
||||
version = "0.6.7"
|
||||
version = "0.7.0"
|
||||
description = "Allows downloading and repacking the MSVC CRT and Windows SDK for cross compilation"
|
||||
authors = ["Jake Shadle <jake.shadle@embark-studios.com>"]
|
||||
edition = "2024"
|
||||
|
||||
+1
-1
@@ -47,7 +47,7 @@ RUN set -eux; \
|
||||
RUN rustup target add x86_64-pc-windows-msvc
|
||||
|
||||
RUN set -eux; \
|
||||
xwin_version="0.6.7"; \
|
||||
xwin_version="0.7.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; \
|
||||
|
||||
Reference in New Issue
Block a user