Skip to content

Commit 5b967ac

Browse files
committed
release
1 parent f06a54f commit 5b967ac

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

NEWS

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
.. _release-1.46.0:
2+
3+
1.46.0 - 2022-10-09
4+
-------------------
5+
6+
* Drop Support for Python 3.5 and 3.6 :pr:`487` :pr:`568`
7+
* Add pyproject.toml and switch to poetry for development only :pr:`513`
8+
* tests: no longer include flake8 in the test suite, it has to be run separately now :pr:`571`
9+
* Start adding some type annotations and integrate mypy :pr:`488`
10+
* easyid3: map easyid3 grouping to TIT1 :pr:`505`
11+
* mutagen-inspect: add usage documentation :pr:`540`
12+
* wave: Fix bitrate calculation :pr:`566`
13+
* Increase buffer size for rewriting files from 256K to 1M to improve performance with network shares :pr:`570`
14+
* Other changes: code cleanup :pr:`514`, typos :pr:`565`, remove upper limit for python version :pr:`579`
15+
16+
117
.. _release-1.45.1:
218

319
1.45.1 - 2020-07-31

mutagen/__init__.py

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

25-
version = (1, 45, 2)
25+
version = (1, 46, 0)
2626
"""Version tuple."""
2727

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

0 commit comments

Comments
 (0)