From d95e90dc36f7e33e384f0e89edcc506993131513 Mon Sep 17 00:00:00 2001 From: John Garrett Date: Tue, 12 Oct 2021 16:06:37 -0400 Subject: [PATCH] Document recent changes and bump version to 0.0.6 --- CHANGES.md | 11 +++++++++++ setup.py | 3 +-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index b9c0d80..2687895 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,14 @@ +v0.0.7 (Oct 12, 2021) +===================== + +- Bugs: + - Remove `import czt` from `setup.py`. This was causing a circular dependency. +- Testing: + - Compare this package against a stripped down version of the CZT algorithm. + - Improve testing coverage. +- Examples: + - Plot residuals in examples. + v0.0.6 (Mar 22, 2021) ===================== diff --git a/setup.py b/setup.py index 6873fb8..ea12bee 100755 --- a/setup.py +++ b/setup.py @@ -34,8 +34,7 @@ def run_tests(self): setup( name="czt", - # version=czt.__version__, - version="0.0.6", + version="0.0.7", author="John Garrett", author_email="garrettj403@gmail.com", description="Chirp Z-transform",