From e38a475b4e00e248e04c50901d75b526464550d3 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 3 Sep 2023 18:24:25 +0200 Subject: [PATCH] release --- NEWS | 4 ++-- mutagen/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index c1113d55..68210b58 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ -.. _release-1.46.1: +.. _release-1.47.0: -1.46.1 - 2023-09-03 +1.47.0 - 2023-09-03 ------------------- * ID3: Allow reading TYER tags in the form of "yyyy-mm-dd" :pr:`597` diff --git a/mutagen/__init__.py b/mutagen/__init__.py index 4c4f1b50..4236d84d 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, 46, 1) +version = (1, 47, 0) """Version tuple.""" version_string = ".".join(map(str, version)) diff --git a/pyproject.toml b/pyproject.toml index dc9f4b6d..292a5e6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mutagen" -version = "1.45.2" +version = "1.47.0" description = "read and write audio tags for many formats" authors = []