Skip to content

Commit

Permalink
Release 1.1.0 (#146)
Browse files Browse the repository at this point in the history
* Release 1.1.0

* Extend changelog

* Simplify last entry
  • Loading branch information
hagenw authored Jul 31, 2023
1 parent cd1eac0 commit 9ff606a
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,48 @@ The format is based on `Keep a Changelog`_,
and this project adheres to `Semantic Versioning`_.


Version 1.1.0 (2023/07/28)
--------------------------

* Added: ``include_root`` argument to
``audinterface.Feature.process_folder()``,
``audinterface.Process.process_folder()``,
``audinterface.Segment.process_folder()``.
Returns relative file path
in index
if set to ``False``.
Default value is ``True``
* Changed: when ``audinterface.Feature``
is instantiated with an ``audinterface.Segment``
object that returns an empty index,
``audinterface.Feature.process_*()``
no longer return ``Index([], dtype='object')``
but ``MultiIndex([], names=['file', 'start', 'end'])``
* Fixed: preserve order of ``start`` and ``end`` values
as returned by the segmentation callable
in the index returned by ``audinterface.Segment``
processing functions
* Fixed: precision of ``audinterface.utils.to_timedelta()``
for ``pd.Timedelta`` objects as input,
e.g.
``to_timedelta(pd.Timedelta('0 days 00:00:35.511437999'))``
now returns
``Timedelta('0 days 00:00:35.511437999')``
instead of
``Timedelta('0 days 00:00:35.511437')``.
This also affects the output of
``audinterface.utils.signal_index()``
* Fixed: preserve requested ``start`` and ``end`` values in
``process_file()``,
``process_files()``,
``process_folder()``
methods of ``audinterface.Process``
and ``audinterface.Feature()``.
Before they were rounded
to the next sample
in the returned index


Version 1.0.4 (2023/07/13)
--------------------------

Expand Down

0 comments on commit 9ff606a

Please sign in to comment.