Skip to content

Commit a6b02ce

Browse files
committed
release
1 parent 7ed00ef commit a6b02ce

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

NEWS

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,28 @@
11
.. _release-1.43.0:
22

3-
1.43.0 - ???
4-
------------
3+
1.43.0 - 2019-11-17
4+
-------------------
55

6+
* **Note: 1.43.x might be the last version supporting Python 2**
67
* Python 3.4 is no longer supported
8+
* Building requires 'setuptools' now, CLI tools depend on 'pkg_resources'
9+
* CLI tools are setuptools entry points now
10+
11+
..
12+
13+
* Fix collections ABCs deprecation warning :pr:`371` (:user:`Ken Sato <ksato9700>`)
14+
* Minor typo fixes :pr:`375` (:user:`Nicholas Chammas <nchammas>`)
15+
* MP3: increase max initial wrong syncs from 1000 to 1500 :pr:`376` (:user:`Hamid Alaei Varnosfaderani <halaei>`)
16+
* FLAC: support files with multiple VORBIS_COMMENT blocks like libflac :pr:`378`
17+
* ID3: Improved TYER/TDAT/TIME upgrade to TDRC :pr:`385`
18+
* MP4: Add support for iTunes HD Video tag (hdvd) :pr:`386` (:user:`Jay Sandhu <JaySandhu>`)
19+
* Add AC3 file type :pr:`400` (:user:`Philipp Wolfer <phw>`)
20+
* AIFF: renamed sample_size to bits_per_sample (sample_size still works) :pr:`403` (:user:`Philipp Wolfer <phw>`)
21+
* API doc fixes :pr:`404` :pr:`407` (:user:`Philipp Wolfer <phw>`)
22+
* Add support for Tom's lossless Audio Kompressor (TAK) :pr:`405` (:user:`Philipp Wolfer <phw>`)
23+
* OptimFROG: support encoder version >= 5.100 :pr:`406` (:user:`Philipp Wolfer <phw>`)
24+
* AIFF: Fix handling of padding bytes, safe chunk manipulation :pr:`409` (:user:`Philipp Wolfer <phw>`)
25+
* Fix typos :pr:`412` (:user:`Tim Gates <timgates42>`)
726

827

928
.. _release-1.42.0:

mutagen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from mutagen._file import FileType, StreamInfo, File
2424
from mutagen._tags import Tags, Metadata, PaddingInfo
2525

26-
version = (1, 42, 1)
26+
version = (1, 43, 0)
2727
"""Version tuple."""
2828

2929
version_string = ".".join(map(str, version))

0 commit comments

Comments
 (0)