Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Mar 21, 2024
1 parent a0f858e commit a0c3665
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ Version 1.1.0 (2023/07/28)
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'])``
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'))``
``to_timedelta(pd.Timedelta("0 days 00:00:35.511437999"))``
now returns
``Timedelta('0 days 00:00:35.511437999')``
``Timedelta("0 days 00:00:35.511437999")``
instead of
``Timedelta('0 days 00:00:35.511437')``.
``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
Expand Down Expand Up @@ -323,7 +323,7 @@ Version 0.5.2 (2020-12-10)
--------------------------

* Fixed: ``audinterface.Feature`` allow
``win_dur=None`` with ``unit='samples'``
``win_dur=None`` with ``unit="samples"``


Version 0.5.1 (2020-12-04)
Expand Down

0 comments on commit a0c3665

Please sign in to comment.