Skip to content

Commit

Permalink
MSRV is now 1.63.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phip1611 committed Sep 21, 2023
1 parent 74379cb commit 81ce2f8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
rust:
- stable
- nightly
- 1.61.0 # MSRV
- 1.63.0 # MSRV
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
Expand All @@ -41,7 +41,7 @@ jobs:
strategy:
matrix:
rust:
- 1.61.0 # MSRV
- 1.63.0 # MSRV
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

# Unreleased
# 1.5.0 (2023-09-21)
- **BREAKING** MSRV is now `1.63.0`
- updated all dependencies
- internal code improvements

# 1.4.0 (2023-03-04)
Expand All @@ -12,7 +14,7 @@
- dependency updates

## 1.3.0 (2023-03-04)
- MSRV is now `1.61.0`
- MSRV is now `1.63.0`
- `FrequencySpectrum::apply_scaling_fn` now requires a reference to `&mut self`:
This is breaking but only for a small percentage of users. Performance is
slightly improved as less heap allocations are required.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
An easy to use and fast `no_std` library (with `alloc`) to get the frequency
spectrum of a digital signal (e.g. audio) using FFT.

The **MSRV** (minimum supported Rust version) is `1.61.0`.
The **MSRV** (minimum supported Rust version) is `1.63.0`.

## I want to understand how FFT can be used to get a spectrum
Please see file [/EDUCATIONAL.md](/EDUCATIONAL.md).
Expand Down

0 comments on commit 81ce2f8

Please sign in to comment.