File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
17
.. _release-1.45.1:
2
18
3
19
1.45.1 - 2020-07-31
Original file line number Diff line number Diff line change 22
22
from mutagen ._file import FileType , StreamInfo , File
23
23
from mutagen ._tags import Tags , Metadata , PaddingInfo
24
24
25
- version = (1 , 45 , 2 )
25
+ version = (1 , 46 , 0 )
26
26
"""Version tuple."""
27
27
28
28
version_string = "." .join (map (str , version ))
You can’t perform that action at this time.
0 commit comments