From d463e7a14d98304d8b5ccb7dffc6ddcad02ef796 Mon Sep 17 00:00:00 2001 From: John Garrett Date: Sat, 27 Feb 2021 13:37:52 -0500 Subject: [PATCH] Document recent changes and bump version to 0.0.4 --- CHANGES.md | 13 +++++++++++++ setup.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 1db7a0b..b02b0ba 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,16 @@ +v0.0.4 (Feb 27, 2021) +===================== + +- CZT: + - Change default ``t_method`` to ``'scipy'`` (fastest). + - czt.iczt: add option to use algorithm 2 from Sukhoy & Stoytchev 2019. + - Fix error in fft and ifft algorithms. Remove warnings now that they work. + - Rename ``f_method``: ``"std"`` -> ``"numpy"``, ``"fast"`` -> ``"recursive"`` +- Benchmark: + - Add benchmarks for czt.czt and czt.iczt. +- Misc: + - Remove windowing functions (unnecessary). + v0.0.3 (Feb 26, 2021) ===================== diff --git a/setup.py b/setup.py index 09cc48c..5dcd37e 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def run_tests(self): setup( name="czt", # version=czt.__version__, - version="0.0.3", + version="0.0.4", author="John Garrett", author_email="garrettj403@gmail.com", description="Chirp Z-transform implemented in Python",