From 989a548879913820bfb2000afb69c340397eb8d8 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Mon, 22 Nov 2021 16:50:42 -0500 Subject: [PATCH] Version bump: 0.9.0 --- docs/conf.py | 4 ++-- docs/index.rst | 5 +++-- mediafile.py | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 4ab1e0c..62578b1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,8 +17,8 @@ copyright = '2016, the beets project' author = 'the beets project' -version = '0.5' -release = '0.5.0' +version = '0.9' +release = '0.9.0' pygments_style = 'sphinx' htmlhelp_basename = 'mediafiledoc' diff --git a/docs/index.rst b/docs/index.rst index 32e4cc7..b8226f2 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -135,10 +135,11 @@ To copy tags from one MediaFile to another: Changelog --------- -v0.8.2 +v0.9.0 '''''' -- Add the properties ``bitrate_mode``, ``encoder_info`` and ``encoder_settings``. +- Add the properties ``bitrate_mode``, ``encoder_info`` and + ``encoder_settings``. v0.8.1 '''''' diff --git a/mediafile.py b/mediafile.py index 907a2d9..ca3747d 100644 --- a/mediafile.py +++ b/mediafile.py @@ -59,7 +59,7 @@ import traceback -__version__ = '0.8.1' +__version__ = '0.9.0' __all__ = ['UnreadableFileError', 'FileTypeError', 'MediaFile'] log = logging.getLogger(__name__)