Skip to content

Commit

Permalink
Release 6.0 (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
ejmahler authored Apr 16, 2021
1 parent f2f3d8b commit 24140ef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [6.0.0]
Released 16 April 2021
### Breaking Changes
- Increased the version of the num-complex dependency to 0.4.
- This is a breaking change because we have a public dependency on num-complex.
- See the [num-complex changelog](https://github.com/rust-num/num-complex/blob/master/RELEASES.md) for a list of breaking changes in num-complex 0.4
- As a high-level summary, most users will not need to do anything to upgrade to RustFFT 6.0: num-complex 0.4 re-exports a newer version of `rand`, and that's num-complex's only documented breaking change.

## [5.1.0]
Released 16 April 2021
### Added
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "rustfft"
version = "5.1.0"
version = "6.0.0"
authors = ["Allen Welkie <allen.welkie at gmail>", "Elliott Mahler <join.together at gmail>"]
edition = "2018"

Expand All @@ -26,13 +26,13 @@ sse = []


[dependencies]
num-complex = "0.3"
num-complex = "0.4"
num-traits = "0.2"
num-integer = "^0.1.40"
strength_reduce = "^0.2.1"
transpose = "0.2"
primal-check = "0.3.1"

[dev-dependencies]
rand = "0.6"
rand = "0.8"
paste = "1.0.4"

0 comments on commit 24140ef

Please sign in to comment.