From 4ef37cce8ca43dac5030b68e20d917b0771cccce Mon Sep 17 00:00:00 2001 From: Brian McFee Date: Wed, 29 Jun 2022 12:36:45 -0400 Subject: [PATCH 1/2] updated changelog --- docs/changes.rst | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/docs/changes.rst b/docs/changes.rst index 605fcda..54a1593 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,45 +1,72 @@ Changes ------- +v0.3.0 +~~~~~~ + +- `#99 `_ Enable caching of pre-computed filters to improve runtime efficiency. +- `#98 `_ Automate pre-computed filter generation. Regenerated and improved `kaiser_fast` and `kaiser_best` filters. +- `#95 `_ Improved documentation +- `#93 `_ Enable parallel processing for sample rate conversion. *Antonio Valentino* +- `#91 `_ Improved python packaging workflow. +- `#90 `_ Fixed a bug in resampling high-dimensional data. +- `#89 `_ Removed support for python 2.7. +- `#88 `_ Bypass sample rate conversion if input and output rates are identical. +- `#87 `_ Added continuous integration tests for linting. +- `#82 `_ Non-uniform output sample positions. *Antonio Valentio* + v0.2.2 ~~~~~~ +2019-08-15 + - `#68 `_ Preserve array ordering (C- or F-contiguity) from input to output. v0.2.1 ~~~~~~ +2018-06-04 + - `#63 `_ Fixed an error in filter response boundary calculations. v0.2.0 ~~~~~~ +2017-09-16 + - `#57 `_ Rewrote the core resampler using Numba. This should alleviate Cython-based installation issues going forward. - `#14 `_ Added support for resampling complex-valued signals. - `#17 `_ Added a safety check for resampling short signals. v0.1.5 ~~~~~~ +2017-02-16 + - `#44 `_ Added type-checking to ensure floating-point inputs v0.1.4 ~~~~~~ +2016-07-13 - `#27 `_ Fixed cython packaging v0.1.3 ~~~~~~ +2016-06-21 - `#23 `_ updated the Cython version requirement. v0.1.2 ~~~~~~ +2016-05-26 - `#20 `_ Expose the ``rolloff`` parameter of (pre-computed) filters v0.1.1 ~~~~~~ +2016-05-23 - Fixed a cython installation and distribution issue v0.1.0 ~~~~~~ +2016-04-21 - Initial release. From 5e2816c254a7137c26c1b143998771e6e4d432c5 Mon Sep 17 00:00:00 2001 From: Brian McFee Date: Wed, 29 Jun 2022 12:37:35 -0400 Subject: [PATCH 2/2] updated changelog --- docs/changes.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/changes.rst b/docs/changes.rst index 54a1593..7caeaae 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -3,6 +3,7 @@ Changes v0.3.0 ~~~~~~ +2022-06-29 - `#99 `_ Enable caching of pre-computed filters to improve runtime efficiency. - `#98 `_ Automate pre-computed filter generation. Regenerated and improved `kaiser_fast` and `kaiser_best` filters.