From 5a8f6507c77e71dcf6da87ecf57c38db48af571c Mon Sep 17 00:00:00 2001 From: Hagen Wierstorf Date: Thu, 18 Jul 2024 09:43:50 +0200 Subject: [PATCH] Release 1.3.0 (#455) * Release 1.3.0 * Update text * Extend changelog * Update name of argument * Update date * Update date --- CHANGELOG.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8f397cf3..8511511b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,25 @@ The format is based on `Keep a Changelog`_, and this project adheres to `Semantic Versioning`_. +Version 1.3.0 (2024-07-18) +-------------------------- + +* Added: ``strict`` argument + to ``audformat.utils.hash()``. + If set to ``True``, + the order of the data, + and its level/column names + are taken into account + when calculating the hash +* Changed: store tables per default as parquet files, + by changing the default value of ``storage_format`` + to ``"parquet"`` + in ``audformat.Table.save()`` + and ``audformat.Database.save()`` +* Fixed: load csv tables with ``pandas.read_csv()``, + if ``pyarrow.csv.read_csv()`` fails + + Version 1.2.0 (2024-06-25) --------------------------