Skip to content

Commit

Permalink
Merge pull request #26 from letuananh/main
Browse files Browse the repository at this point in the history
speach 0.1a8 ready
  • Loading branch information
letuananh committed May 27, 2021
2 parents 0de88dc + 67d6e33 commit 703168e
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 16 deletions.
32 changes: 21 additions & 11 deletions docs/updates.rst
Original file line number Diff line number Diff line change
@@ -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 <contributors>`'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 <contributors>`'s media processing code into ``speach.media`` module.

- 2021-04-28

- Initial release on PyPI
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
6 changes: 3 additions & 3 deletions speach/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 703168e

Please sign in to comment.