diff --git a/CHANGES.md b/CHANGES.md index 704d2b2..b9c0d80 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,19 @@ +v0.0.6 (Mar 22, 2021) +===================== + +- `czt`: + - `freq2time` and `time2freq`: + - Fix phase correction. + - Remove scaling factor (hack). + - Remove `t_orig` and `f_orig` arguments. Not needed anymore. + - Don't return original frequency/time in `time2freq` and `freq2time`. Instead make a copy of the Numpy array. + - Always default to FFT settings if output frequency/time array is not specified. + - Fix `M!=N` error in `czt.czt`. Use proper `k`-range. + - Optimize `pd` and `skew_circulant_multiply`. `pd` is now a similar speed as `scipy`. +- Profiling: + - Add benchmarking scripts using `perfplot`. + - Add simple timing scripts. + v0.0.5 (Mar 2, 2021) ==================== diff --git a/setup.py b/setup.py index 3413941..1c6b5a5 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def run_tests(self): setup( name="czt", # version=czt.__version__, - version="0.0.5", + version="0.0.6", author="John Garrett", author_email="garrettj403@gmail.com", description="Chirp Z-transform",