File tree Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
include README.md
2
+ include CHANGELOG.md
2
3
include ear/core/data/README.md
3
4
include tox.ini
Original file line number Diff line number Diff line change 3
3
setup (
4
4
name = 'ear' ,
5
5
description = 'EBU ADM Renderer' ,
6
- version = '1.0.0 ' ,
6
+ version = '1.0.1 ' ,
7
7
8
8
url = 'https://github.com/ebu/ebu_adm_renderer' ,
9
9
10
10
author = 'EBU' ,
11
11
12
12
license = 'BSD-3-Clause' ,
13
13
14
- long_description = open ('README.md' ).read (),
14
+ long_description = open ('README.md' ).read () + ' \n ' + open ( 'CHANGELOG.md' ). read () ,
15
15
long_description_content_type = 'text/markdown' ,
16
16
17
17
install_requires = [
You can’t perform that action at this time.
0 commit comments