From 7375e9f02769c95bf1bdb58cb2130afcccdf3f50 Mon Sep 17 00:00:00 2001 From: Christian Liebhardt Date: Wed, 6 Jan 2021 10:22:18 +0100 Subject: [PATCH] Removed Travis CI and updated changelog --- .travis.yml | 26 -------------------------- Changelog.md | 1 + 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 5de7e6a05..000000000 --- a/.travis.yml +++ /dev/null @@ -1,26 +0,0 @@ -language: rust -sudo: false - -# we you unstable issues and need Rust nightly -# however we of course hope that we will be able to use stable at some point -# `cfg_target_feature` and `simd` are the main reasons why Rust nightly is required. -rust: - - stable - - beta - - nightly -#before_script: -# - rustup component add clippy-preview -# Run the makefile to test all tests and doc tests for every sub module -# and then test and bench the the top level crate. -script: -- | - make test && - make bench && - make clippy && - cargo doc -p basic_dsp -p basic_dsp_vector -p basic_dsp_matrix --no-deps --no-default-features --features std,matrix - -env: - global: - # Add certain compiler flags with the rustc wrapper script - - RUSTC="$TRAVIS_BUILD_DIR/rustc.sh" - - RUST_BACKTRACE=1 diff --git a/Changelog.md b/Changelog.md index c5879570b..a1780767a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,7 @@ ## Version 0.9.2 - Updated `rustfft` dependency +- Memory usage: With `rustfft` version 5 FFTs might require more memory. `FixedLenBuffer`s will need to be resized. The default `SingleBuffer` will adjust itself dynamically. Refer to https://github.com/ejmahler/RustFFT/issues/45 for a more detailed disucssion. - Buffers now resize correctly if the underlying data type allows for it ## Version 0.9.1