Release xwin 0.6.2

This commit is contained in:
Jake Shadle
2024-07-02 10:36:33 +02:00
parent 1c1d08c3b2
commit b0fe405875
4 changed files with 6 additions and 4 deletions
+3 -1
View File
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.6.2] - 2024-07-02
### Fixed
- [PR#131](https://github.com/Jake-Shadle/xwin/pull/131) resolved [#130](https://github.com/Jake-Shadle/xwin/issues/130) by adding detection of case-insensitive file systems, which then disables symlink creation since it is not needed, and breaks.
@@ -178,7 +179,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.1...HEAD
[Unreleased]: https://github.com/Jake-Shadle/xwin/compare/0.6.2...HEAD
[0.6.2]: https://github.com/Jake-Shadle/xwin/compare/0.6.1...0.6.2
[0.6.1]: https://github.com/Jake-Shadle/xwin/compare/0.6.0...0.6.1
[0.6.0]: https://github.com/Jake-Shadle/xwin/compare/0.5.2...0.6.0
[0.5.2]: https://github.com/Jake-Shadle/xwin/compare/0.5.1...0.5.2
Generated
+1 -1
View File
@@ -1656,7 +1656,7 @@ dependencies = [
[[package]]
name = "xwin"
version = "0.6.1"
version = "0.6.2"
dependencies = [
"anyhow",
"bytes",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "xwin"
version = "0.6.1"
version = "0.6.2"
description = "Allows downloading and repacking the MSVC CRT and Windows SDK for cross compilation"
authors = ["Jake Shadle <jake.shadle@embark-studios.com>"]
edition = "2021"
+1 -1
View File
@@ -47,7 +47,7 @@ RUN set -eux; \
RUN rustup target add x86_64-pc-windows-msvc
RUN set -eux; \
xwin_version="0.6.1"; \
xwin_version="0.6.2"; \
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; \