diff --git a/HISTORY.rst b/HISTORY.rst index 24be054dd..7a0d435a7 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,13 @@ History ======= +0.5.3 (2023-03-30) +------------------ + +* Bugfix: Spectrum interpolation on logarithmically spaced frequency bins including zero frequency. (PR #453) +* Bugfix: Include signal domain and fft norm when writing Signals to far-files. (PR #443) +* Bugfix: Return the HRIRs contained in the sample file in the correct order. (PR #448) + 0.5.2 (2023-01-20) ------------------ diff --git a/pyfar/__init__.py b/pyfar/__init__.py index 70759d605..8c6a2d1fc 100644 --- a/pyfar/__init__.py +++ b/pyfar/__init__.py @@ -4,7 +4,7 @@ __author__ = """The pyfar developers""" __email__ = '' -__version__ = '0.5.2' +__version__ = '0.5.3' from .classes.audio import Signal, TimeData, FrequencyData diff --git a/setup.cfg b/setup.cfg index e8d4d2184..6e9cc1521 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.2 +current_version = 0.5.3 commit = True tag = True diff --git a/setup.py b/setup.py index ff6b8ac2c..db1ed04e9 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ "Documentation": "https://pyfar.readthedocs.io/", "Source Code": "https://github.com/pyfar/pyfar", }, - version='0.5.2', + version='0.5.3', zip_safe=False, python_requires='>=3.8' )