From 5b967acd2392b44a5c21d6a4c34bf624c9aa3fe9 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 9 Oct 2022 19:32:53 +0200 Subject: [PATCH] release --- NEWS | 16 ++++++++++++++++ mutagen/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 19e51516..c9458655 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,19 @@ +.. _release-1.46.0: + +1.46.0 - 2022-10-09 +------------------- + +* Drop Support for Python 3.5 and 3.6 :pr:`487` :pr:`568` +* Add pyproject.toml and switch to poetry for development only :pr:`513` +* tests: no longer include flake8 in the test suite, it has to be run separately now :pr:`571` +* Start adding some type annotations and integrate mypy :pr:`488` +* easyid3: map easyid3 grouping to TIT1 :pr:`505` +* mutagen-inspect: add usage documentation :pr:`540` +* wave: Fix bitrate calculation :pr:`566` +* Increase buffer size for rewriting files from 256K to 1M to improve performance with network shares :pr:`570` +* Other changes: code cleanup :pr:`514`, typos :pr:`565`, remove upper limit for python version :pr:`579` + + .. _release-1.45.1: 1.45.1 - 2020-07-31 diff --git a/mutagen/__init__.py b/mutagen/__init__.py index 2644cfa6..efff8dee 100644 --- a/mutagen/__init__.py +++ b/mutagen/__init__.py @@ -22,7 +22,7 @@ from mutagen._file import FileType, StreamInfo, File from mutagen._tags import Tags, Metadata, PaddingInfo -version = (1, 45, 2) +version = (1, 46, 0) """Version tuple.""" version_string = ".".join(map(str, version))