Skip to content
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

Preparing release 3.4.0 #43

Merged
merged 1 commit into from
Sep 26, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on:
push:
tags:
tags:
- '*'

name: Publish on crates.io
Expand All @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- nightly
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install toolchain
uses: dtolnay/rust-toolchain@v1
Expand All @@ -36,7 +36,7 @@ jobs:
uses: actions/checkout@v3

- name: Install toolchain
uses: dtolnay/rust-toolchain@1.37
uses: dtolnay/rust-toolchain@1.61
with:
components: rustfmt, clippy

Expand All @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "realfft"
version = "3.3.0"
version = "3.4.0"
authors = ["HEnquist <[email protected]>"]
edition = "2018"
description = "Real-to-complex forward FFT and complex-to-real inverse FFT for Rust"
Expand All @@ -13,7 +13,7 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rustfft = "6.1.0"
rustfft = "6.2.0"

[dev-dependencies]
criterion = "0.3"
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ c2r.process(&mut spectrum, &mut outdata).unwrap();
```

#### Versions
- 3.4.0: Fix undefined behavior reported by Miri.
Update to latest RustFFT.
- 3.3.0: Add method for getting the length of the complex input/output.
Bugfix: clean up numerical noise in the zero imaginary components.
- 3.2.0: Allow scratch buffer to be larger than needed.
Expand All @@ -156,7 +158,6 @@ c2r.process(&mut spectrum, &mut outdata).unwrap();
#### Compatibility

The `realfft` crate has the same rustc version requirements as RustFFT.
The minimum rustc version is 1.37 on all platforms except AArch64.
On AArch64 the minimum rustc version is 1.61.
The minimum rustc version is 1.61.

License: MIT
5 changes: 3 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@
//! ```
//!
//! ### Versions
//! - 3.4.0: Fix undefined behavior reported by Miri.
//! Update to latest RustFFT.
//! - 3.3.0: Add method for getting the length of the complex input/output.
//! Bugfix: clean up numerical noise in the zero imaginary components.
//! - 3.2.0: Allow scratch buffer to be larger than needed.
Expand All @@ -154,8 +156,7 @@
//! ### Compatibility
//!
//! The `realfft` crate has the same rustc version requirements as RustFFT.
//! The minimum rustc version is 1.37 on all platforms except AArch64.
//! On AArch64 the minimum rustc version is 1.61.
//! The minimum rustc version is 1.61.

pub use rustfft::num_complex;
pub use rustfft::num_traits;
Expand Down
Loading