Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
30 changes: 24 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,30 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe

-->

The latest published Fearless SIMD release is [0.5.0](#050-2026-06-18) which was released on 2026-06-18.
You can find its changes [documented below](#050-2026-06-18).
The latest published Fearless SIMD release is [0.6.0](#060-2026-07-10) which was released on 2026-07-10.
You can find its changes [documented below](#060-2026-07-10).

## [Unreleased]

## [0.6.0][] (2026-07-10)

This release has an [MSRV][] of 1.89.

### Added

- Added Ice Lake-class AVX-512 support with a generated `Avx512` level and 512-bit native-width vector types.
- Added Ice Lake-class AVX-512 support with a generated `Avx512` level and 512-bit native-width vector types. ([#231][] by [@Shnatsel][])
- Added controls for x86 automatic multiversioning using `cfg` flags, letting final binary builds decide which levels `dispatch!` uses. ([#258][], [#264][] by [@Shnatsel][])
- Added the `swizzle_dyn_within_blocks` method on SIMD vector types for dynamic byte-indexed swizzles within each native-width block. ([#266][] by [@Shnatsel][])

### Changed

- The MSRV is now Rust 1.89.
- The MSRV is now Rust 1.89. ([#231][] by [@Shnatsel][])
- Documentation and examples have been expanded and cleaned up to show autovectorization, use of intrinsics, x86 multiversioning, and AVX-512-width inputs. ([#252][], [#258][], [#261][], [#264][] by [@Shnatsel][])
- `Level::Fallback` and x86 `Level::Sse4_2` variants now remain available whenever their token types exist. ([#264][] by [@Shnatsel][])

### Fixed

- `dispatch!` and `Level::dispatch` now correctly omit AVX2 code paths when the Ice Lake/AVX-512 feature set is available. ([#263][] by [@Shnatsel][])

## [0.5.0][] (2026-06-18)

Expand Down Expand Up @@ -235,6 +245,7 @@ No changelog was kept for this release.
[#225]: https://github.com/linebender/fearless_simd/pull/225
[#226]: https://github.com/linebender/fearless_simd/pull/226
[#230]: https://github.com/linebender/fearless_simd/pull/230
[#231]: https://github.com/linebender/fearless_simd/pull/231
[#232]: https://github.com/linebender/fearless_simd/pull/232
[#233]: https://github.com/linebender/fearless_simd/pull/233
[#234]: https://github.com/linebender/fearless_simd/pull/234
Expand All @@ -247,8 +258,15 @@ No changelog was kept for this release.
[#243]: https://github.com/linebender/fearless_simd/pull/243
[#244]: https://github.com/linebender/fearless_simd/pull/244
[#245]: https://github.com/linebender/fearless_simd/pull/245

[Unreleased]: https://github.com/linebender/fearless_simd/compare/v0.5.0...HEAD
[#252]: https://github.com/linebender/fearless_simd/pull/252
[#258]: https://github.com/linebender/fearless_simd/pull/258
[#261]: https://github.com/linebender/fearless_simd/pull/261
[#263]: https://github.com/linebender/fearless_simd/pull/263
[#264]: https://github.com/linebender/fearless_simd/pull/264
[#266]: https://github.com/linebender/fearless_simd/pull/266

[Unreleased]: https://github.com/linebender/fearless_simd/compare/v0.6.0...HEAD
[0.6.0]: https://github.com/linebender/fearless_simd/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/linebender/fearless_simd/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/linebender/fearless_simd/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/linebender/fearless_simd/compare/v0.4.0...v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion fearless_simd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fearless_simd"
version = "0.5.0"
version = "0.6.0"
license.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down
Loading