Skip to content

updated toolchain #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 26 commits into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2099030
changelog: add glam version relaxation to changelog
Firestar99 Sep 19, 2024
6e65769
examples/shaders/shared: remove unused `feature(lang_items)`.
eddyb Aug 3, 2024
d90a4d0
tests: also test the `debugPrintf` generated from panics.
eddyb Aug 8, 2024
76acbd6
rustup: update to `nightly-2023-11-26`.
LegNeato Nov 27, 2023
5545bb7
rustup: update to `nightly-2023-12-16`.
LegNeato Dec 17, 2023
aac232d
rustup: update to `nightly-2023-12-31`.
LegNeato Jan 2, 2024
9e6a4e8
spirv-builder: disable MIR "GVN" optimization pass.
eddyb Aug 2, 2024
006b6a7
builder: fix `atomic_cmpxchg` for SPIR-V `OpAtomicCompareExchange`.
eddyb Aug 2, 2024
ac32c65
builder: `struct_gep` implies `inbounds`.
eddyb Aug 2, 2024
fd97e49
rustup: update to `nightly-2024-01-05`.
eddyb Aug 2, 2024
122414e
rustup: update to `nightly-2024-01-06`.
eddyb Aug 2, 2024
ef7bd74
builder: handle `ptr_add`-like GEPs (introduced by rust-lang/rust#118…
eddyb Aug 2, 2024
9370609
rustup: update to `nightly-2024-01-08`.
LegNeato Jan 9, 2024
897fcd4
rustup: update to `nightly-2024-02-01`.
eddyb Aug 3, 2024
297202e
rustup: update to `nightly-2024-03-01`.
eddyb Aug 3, 2024
175ddba
rustup: update to `nightly-2024-03-11`.
eddyb Aug 3, 2024
8b90340
spirv-builder: pass JSON files to `--target` instead of relying on th…
eddyb Aug 4, 2024
0935c79
Make stage_id use the env
LegNeato Sep 18, 2024
1c1f3c1
Further process paths on windows
LegNeato Sep 18, 2024
196ec2d
tests: add for_range_signed test
Firestar99 Sep 19, 2024
a3e8ced
rustup: update to `nightly-2024-03-21`. Breaks for_range_signed
eddyb Aug 3, 2024
cf9c4c7
rustup: update to `nightly-2024-04-01`.
eddyb Aug 3, 2024
8afae47
rustup: update to `nightly-2024-04-24`.
eddyb Aug 4, 2024
972c424
cargo update
Firestar99 Sep 19, 2024
580f827
Add correct nightly to CHANGELOG and README
LegNeato Sep 19, 2024
493dd3d
changelog: add breaking change of signed for loops no longer compiling
Firestar99 Sep 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### 🚨BREAKING🚨
- Signed for loops like `for _ in 0..4i32 {}` no longer compile. We recommend switching to unsigned for loops and casting back to signed integers in the meanwhile.

### Changed 🛠
- [PR#12](https://github.com/rust-gpu/rust-gpu/pull/12) updated toolchain to `nightly-2024-04-24`
- [PR#9](https://github.com/Rust-GPU/rust-gpu/pull/9) relaxed `glam` version requirements (`>=0.22, <=0.29`)
- [PR#1127](https://github.com/EmbarkStudios/rust-gpu/pull/1127) updated `spirv-tools` to `0.10.0`, which follows `vulkan-sdk-1.3.275`
- [PR#1101](https://github.com/EmbarkStudios/rust-gpu/pull/1101) added `ignore` and `no_run` to documentation to make `cargo test` pass
- [PR#1112](https://github.com/EmbarkStudios/rust-gpu/pull/1112) updated wgpu and winit in example runners
- [PR#1100](https://github.com/EmbarkStudios/rust-gpu/pull/1100) updated toolchain to `nightly-2023-09-30`
- [PR#1091](https://github.com/EmbarkStudios/rust-gpu/pull/1091) updated toolchain to `nightly-2023-08-29`
- [PR#1085](https://github.com/EmbarkStudios/rust-gpu/pull/1085) updated toolchain to `nightly-2023-07-08`
- [PR#1115](https://github.com/EmbarkStudios/rust-gpu/pull/1115) relaxed `glam` version requirements (from `>=0.22, <=0.24` to `>=0.22, <=0.25`)

### Fixed 🩹
- [PR#1129](https://github.com/EmbarkStudios/rust-gpu/pull/1129) fixed [#1062](https://github.com/EmbarkStudios/rust-gpu/issues/1062) by not flipping the comparison of the rotate amount with zero
Expand Down
Loading