Skip to content

Commit 0a3ac74

Browse files
authored
Prepare v0.3.0 release (#107)
This updates the changelog and version numbers in preparation for a release of version 0.3.0.
1 parent 5a26e6c commit 0a3ac74

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe
88

99
# Changelog
1010

11-
The latest published Fearless SIMD release is [0.2.0](#020-2025-08-26) which was released on 2025-08-26.
12-
You can find its changes [documented below](#020-2025-08-26).
11+
The latest published Fearless SIMD release is [0.3.0](#020-2025-10-10) which was released on 2025-10-10.
12+
You can find its changes [documented below](#020-2025-10-10).
1313

1414
## [Unreleased]
1515

1616
This release has an [MSRV][] of 1.86.
1717

18-
## Added
18+
## [0.3.0][] (2025-10-10)
19+
20+
This release has an [MSRV][] of 1.86.
21+
22+
### Added
1923

2024
- `SimdBase::witness` to fetch the `Simd` implementation associated with a
2125
generic vector. ([#76][] by [@Ralith][])
@@ -29,15 +33,15 @@ This release has an [MSRV][] of 1.86.
2933
- Unary negation of signed integers. ([#91][] by [@Ralith][])
3034
- A simpler `dispatch` macro to replace `simd_dispatch`. ([#96][], [#99][] by [@Ralith][], [@DJMcNab][])
3135

32-
## Fixed
36+
### Fixed
3337

3438
- `Simd` now requires consistent mask types for native-width
3539
vectors. ([#75][] by [@Ralith][])
3640
- `Simd` now requires consistent `Bytes` types for native-width vectors,
3741
enabling `Bytes::bitcast` in generic code. ([#81][] by [@Ralith][])
3842
- Scalar fallback now uses wrapping integer addition. ([#85][] by [@Ralith][])
3943

40-
## Changed
44+
### Changed
4145

4246
- Breaking: `a.madd(b, c)` and `a.msub(b, c)` now correspond to `a *
4347
b + c` and `a * b - c` for consistency with `mul_add` in
@@ -82,7 +86,8 @@ No changelog was kept for this release.
8286
[#96]: https://github.com/linebender/fearless_simd/pull/96
8387
[#99]: https://github.com/linebender/fearless_simd/pull/99
8488

85-
[Unreleased]: https://github.com/linebender/fearless_simd/compare/v0.2.0...HEAD
89+
[Unreleased]: https://github.com/linebender/fearless_simd/compare/v0.3.0...HEAD
90+
[0.3.0]: https://github.com/linebender/fearless_simd/compare/v0.3.0...v0.2.0
8691
[0.2.0]: https://github.com/linebender/fearless_simd/compare/e54304c66fc3e42d9604ddc7775b3345b589ce1a...v0.2.0
8792
[0.1.1]: https://github.com/linebender/fearless_simd/compare/d683506b50721d35745cfc098527e007f1cb3425...e54304c66fc3e42d9604ddc7775b3345b589ce1a
8893
[0.1.0]: https://github.com/linebender/fearless_simd/commit/d683506b50721d35745cfc098527e007f1cb3425

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fearless_simd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fearless_simd"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
license.workspace = true
55
edition.workspace = true
66
repository.workspace = true

fearless_simd_gen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fearless_simd_gen"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
license.workspace = true
55
edition.workspace = true
66
authors = ["Raph Levien <[email protected]>"]

0 commit comments

Comments
 (0)