From 9bab8b2c480b88e31145408f3ca99cdbd1330903 Mon Sep 17 00:00:00 2001 From: Le Tuan Anh Date: Thu, 27 May 2021 12:13:23 +0800 Subject: [PATCH 1/3] update changelog --- docs/updates.rst | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/docs/updates.rst b/docs/updates.rst index 7a76d09..c728769 100644 --- a/docs/updates.rst +++ b/docs/updates.rst @@ -1,17 +1,27 @@ .. _updates: -Updates -======= +Speach Changelog +================ -2021-04-30 ----------- +Speach 0.1a8 +------------ -- Added :func:`speach.elan.ELANDoc.cut` function to cut annotations to separate audio files. -- Expand user home directory automatically when using :func:`speach.elan.read_eaf` function. -- Module :mod:`speach.media` supports converting media files, cutting them by timestamps, and demuxer concat. -- Package :ref:`Victoria Chua `'s media processing code into ``speach.media`` module. +- 2021-05-27: Added some basic ELAN editing functions -2021-04-28 ----------- + - Update participant codes + - Update tier names + - Update annotation texts -- Initial release on PyPI +Speach 0.1a7 +------------ + +- 2021-04-30 + + - Added :func:`speach.elan.ELANDoc.cut` function to cut annotations to separate audio files. + - Expand user home directory automatically when using :func:`speach.elan.read_eaf` function. + - Module :mod:`speach.media` supports converting media files, cutting them by timestamps, and demuxer concat. + - Package :ref:`Victoria Chua `'s media processing code into ``speach.media`` module. + +- 2021-04-28 + + - Initial release on PyPI From 284904224c9c30677e6ca09b86d829191f9670fb Mon Sep 17 00:00:00 2001 From: Le Tuan Anh Date: Thu, 27 May 2021 12:17:16 +0800 Subject: [PATCH 2/3] update package info --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index acf9e00..f511503 100755 --- a/setup.py +++ b/setup.py @@ -61,8 +61,12 @@ def read(*filenames, **kwargs): platforms='any', test_suite='test', # Reference: https://pypi.python.org/pypi?%3Aaction=list_classifiers - classifiers=['Programming Language :: Python', - 'Development Status :: 2 - Pre-Alpha', + classifiers=['Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Development Status :: {}'.format(pkg_info['__status__']), 'License :: OSI Approved :: {}'.format(pkg_info['__license__']), 'Environment :: Plugins', 'Intended Audience :: Education', From 5611a8545687a1a9ce0c730308acf2ae0f3083fe Mon Sep 17 00:00:00 2001 From: Le Tuan Anh Date: Thu, 27 May 2021 13:25:55 +0800 Subject: [PATCH 3/3] speach 0.1a8 ready --- speach/__version__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/speach/__version__.py b/speach/__version__.py index db7aa83..8c0befc 100644 --- a/speach/__version__.py +++ b/speach/__version__.py @@ -14,6 +14,6 @@ __issue__ = "https://github.com/neocl/speach/issues/" __maintainer__ = "Le Tuan Anh" __version_major__ = "0.1" # follow PEP-0440 -__version__ = "{}a7".format(__version_major__) -__version_long__ = "{} - Alpha 7".format(__version_major__) -__status__ = "Prototype" +__version__ = "{}a8".format(__version_major__) +__version_long__ = "{} - Alpha 8".format(__version_major__) +__status__ = "3 - Alpha"