Skip to content

Commit 47cab4f

Browse files
committed
release
1 parent 407ed06 commit 47cab4f

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

NEWS

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
.. _release-1.45.0:
2+
3+
1.45.0 - 2020-07-11
4+
-------------------
5+
6+
* WAVE support with ID3 tags :pr:`408` (:user:`Philipp Wolfer <phw>`, :user:`Borewit`)
7+
* DSDIFF support with ID3 tags :pr:`473` :pr:`472` (:user:`Philipp Wolfer <phw>`)
8+
* MP4: Add support for nero chapters :pr:`398` (:user:`Martin Weinelt <mweinelt>`)
9+
* wavpack: add support for wavpack DSD :pr:`464` (:user:`Timothy Redaelli <drizzt>`)
10+
* wavpack: add bits_per_sample :pr:`467` (:user:`Timothy Redaelli <drizzt>`)
11+
* MP4: handle DecoderSpecificInfo with wrong instance size :pr:`465`
12+
* docs: various fixes :pr:`461` (:user:`Terence Eden <edent>`), :pr:`474` (:user:`naglis`)
13+
* tests: depend on flake8 now (instead of pycodestyle and pyflakes)
14+
* docs: fix warnings with sphinx v3
15+
16+
Fuzzing related:
17+
18+
* Fuzzing integration with `python-afl <https://github.com/jwilk/python-afl>`__ :pr:`449`
19+
* Fix various unhandled error cases in ogg, asf, oggvorbis, id3 :pr:`441`, :pr:`445`, :pr:`446`, :pr:`447`, :pr:`448`, :pr:`454` (:user:`Julien Voisin <jvoisin>`)
20+
* aac: Fix ZeroDivisionError in case frequency is unknown
21+
* musepack: handle truncated stream header
22+
* musepack: handle invalid sample rate index
23+
* musepack: handle duplicate RG/SH packets
24+
* oggtheora: handle truncated header packet
25+
* oggtheora: fail if FRN in the header packet is zero
26+
* oggtheora: handle empty pages in more cases
27+
* ogg: handle empty pages in to_packets()
28+
* aiff: handle overflow in read_float() :pr:`456`
29+
30+
131
.. _release-1.43.1:
232

333
1.43.1 - 2020-07-11

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, 44, 1)
26+
version = (1, 45, 0)
2727
"""Version tuple."""
2828

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

0 commit comments

Comments
 (0)