Skip to content

Commit 628aa9c

Browse files
committed
version 1.0.1
1 parent e6a9c15 commit 628aa9c

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Changelog
2+
3+
## [1.0.1] - 2018-11-23
4+
5+
### Changed
6+
- An error will be raised if any `audioTrackUID` elements or CHNA rows have ID
7+
`ATU_00000000`, as references to these elements could be confused with silent
8+
`audioTrackUID` references.
9+
- Miscellaneous improvements to testing infrastructure.
10+
11+
### Fixed
12+
- When generating BW64+ADM files (with `ear-utils`), do not generate
13+
`audioTrackUID`s with ID `ATU_00000000`, which (as above) could be confused
14+
with silent `audioTrackUID` references.
15+
- Updated use of `attrs` to fix deprecation warnings.
16+
- Wrong imports and CHNA chunk generation in `replace_axml` command.
17+
- Pytest warnings fixed by upgrading `pytest-datafiles` to 2.0.
18+
- Error when testing `block_aligner` on python 3.7 with coverage enabled.
19+
- Error in `PeakMonitor` when rendering very short files.
20+
- `dump_chna` in binary mode on python 3.
21+
- Padding character in axml chunk.
22+
23+
## 1.0.0 - 2018-03-29
24+
25+
Initial release.
26+
27+
[1.0.1]: https://github.com/ebu/ebu_adm_renderer/compare/1.0.0...1.0.1

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
include README.md
2+
include CHANGELOG.md
23
include ear/core/data/README.md
34
include tox.ini

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
setup(
44
name='ear',
55
description='EBU ADM Renderer',
6-
version='1.0.0',
6+
version='1.0.1',
77

88
url='https://github.com/ebu/ebu_adm_renderer',
99

1010
author='EBU',
1111
author_email='[email protected]',
1212
license='BSD-3-Clause',
1313

14-
long_description=open('README.md').read(),
14+
long_description=open('README.md').read() + '\n' + open('CHANGELOG.md').read(),
1515
long_description_content_type='text/markdown',
1616

1717
install_requires=[

0 commit comments

Comments
 (0)