From a6b02ce94f3078fe19842743c376a7a31b5bf53c Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 17 Nov 2019 20:59:34 +0100 Subject: [PATCH] release --- NEWS | 23 +++++++++++++++++++++-- mutagen/__init__.py | 2 +- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index eafd8941..1ae76d10 100644 --- a/NEWS +++ b/NEWS @@ -1,9 +1,28 @@ .. _release-1.43.0: -1.43.0 - ??? ------------- +1.43.0 - 2019-11-17 +------------------- +* **Note: 1.43.x might be the last version supporting Python 2** * Python 3.4 is no longer supported +* Building requires 'setuptools' now, CLI tools depend on 'pkg_resources' +* CLI tools are setuptools entry points now + +.. + +* Fix collections ABCs deprecation warning :pr:`371` (:user:`Ken Sato `) +* Minor typo fixes :pr:`375` (:user:`Nicholas Chammas `) +* MP3: increase max initial wrong syncs from 1000 to 1500 :pr:`376` (:user:`Hamid Alaei Varnosfaderani `) +* FLAC: support files with multiple VORBIS_COMMENT blocks like libflac :pr:`378` +* ID3: Improved TYER/TDAT/TIME upgrade to TDRC :pr:`385` +* MP4: Add support for iTunes HD Video tag (hdvd) :pr:`386` (:user:`Jay Sandhu `) +* Add AC3 file type :pr:`400` (:user:`Philipp Wolfer `) +* AIFF: renamed sample_size to bits_per_sample (sample_size still works) :pr:`403` (:user:`Philipp Wolfer `) +* API doc fixes :pr:`404` :pr:`407` (:user:`Philipp Wolfer `) +* Add support for Tom's lossless Audio Kompressor (TAK) :pr:`405` (:user:`Philipp Wolfer `) +* OptimFROG: support encoder version >= 5.100 :pr:`406` (:user:`Philipp Wolfer `) +* AIFF: Fix handling of padding bytes, safe chunk manipulation :pr:`409` (:user:`Philipp Wolfer `) +* Fix typos :pr:`412` (:user:`Tim Gates `) .. _release-1.42.0: diff --git a/mutagen/__init__.py b/mutagen/__init__.py index e83ed8db..ad9d709f 100644 --- a/mutagen/__init__.py +++ b/mutagen/__init__.py @@ -23,7 +23,7 @@ from mutagen._file import FileType, StreamInfo, File from mutagen._tags import Tags, Metadata, PaddingInfo -version = (1, 42, 1) +version = (1, 43, 0) """Version tuple.""" version_string = ".".join(map(str, version))