Skip to content

Commit

Permalink
changelog and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-franco-gomez committed Apr 17, 2024
1 parent 171b9bb commit 8ed5c01
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,26 @@ adheres to `Semantic Versioning <http://semver.org/spec/v2.0.0.html>`_.
- Validation for results from tests in every module (so far many tests are
only regarding functionality)

`0.3.5 <https://pypi.org/project/dsptoolbox/0.3.5>`_ -
---------------------

Added
~~~~~~~
- `harmonic_distortion_analysis` in ``transfer_functions``
- added possibility of scaling the spectrogram
- calibration using any dBSPL value

Bugfix
~~~~~~~
- `reverb_time` now uses indices of peaks instead of -20 dBFS threshold since
it delivers more accurate results
- now scaling a spectrum of a signal with a window is done correctly (taking
the window into account)

Misc
~~~~~~
- general documentation and small performance improvements

`0.3.4 <https://pypi.org/project/dsptoolbox/0.3.4>`_ -
---------------------

Expand Down
2 changes: 1 addition & 1 deletion dsptoolbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@
"effects",
]

__version__ = "0.3.4"
__version__ = "0.3.5"
2 changes: 1 addition & 1 deletion dsptoolbox/transfer_functions/transfer_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1714,7 +1714,7 @@ def harmonic_distortion_analysis(
sp_thd += interp1d(
f,
sp_power,
kind="cubic",
kind="linear",
bounds_error=False,
fill_value=0,
assume_sorted=True,
Expand Down

0 comments on commit 8ed5c01

Please sign in to comment.