Skip to content
Draft
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
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe

# Changelog

The latest published Fearless SIMD release is [0.3.0](#030-2025-10-14) which was released on 2025-10-14.
You can find its changes [documented below](#030-2025-10-14).
The latest published Fearless SIMD release is [0.4.0](#040-2025-12-16) which was released on 2025-12-16.
You can find its changes [documented below](#040-2025-12-16).

## [Unreleased]

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

## [0.4.0][] (2025-12-16)

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

### Added

- All vector types now implement `Index` and `IndexMut`. ([#112][] by [@Ralith][])
Expand All @@ -24,6 +28,7 @@ This release has an [MSRV][] of 1.88.
- The bitwise "not" operation on integer vector types. ([#130][] by [@valadaptive][])
- The `from_fn` method on vector types. ([#137][] by [@valadaptive][])
- The `load_interleaved` and `store_interleaved` operations now use native intrinsics on x86, instead of using the fallback implementations. ([#140][] by [@valadaptive][])
- Add support for `relaxed_simd` operations in WebAssembly. ([#143][] by [@valadaptive][])
- The `ceil` and `round_ties_even` operations on floating-point vector types. (Rust's `round` operation rounds away from zero in the case of ties. Many architectures do not natively implement that behavior, so it's omitted.) ([#145][] by [@valadaptive][])
- A `prelude` module, which exports all the traits in the library but not the types. ([#149][] by [@valadaptive][])
- The `any_true`, `all_true`, `any_false`, and `all_false` methods on mask types. ([#141][] by [@valadaptive][])
Expand Down Expand Up @@ -150,6 +155,7 @@ No changelog was kept for this release.
[#137]: https://github.com/linebender/fearless_simd/pull/137
[#140]: https://github.com/linebender/fearless_simd/pull/140
[#141]: https://github.com/linebender/fearless_simd/pull/141
[#143]: https://github.com/linebender/fearless_simd/pull/143
[#145]: https://github.com/linebender/fearless_simd/pull/145
[#149]: https://github.com/linebender/fearless_simd/pull/149
[#154]: https://github.com/linebender/fearless_simd/pull/154
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.3.0"
version = "0.4.0"
license.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down