Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Oct 9, 2022
1 parent f06a54f commit 5b967ac
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion mutagen/__init__.py
Expand Up @@ -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))
Expand Down

0 comments on commit 5b967ac

Please sign in to comment.