diff --git a/README.md b/README.md index 48e155d..8a6578b 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,9 @@ specified. TinyTag.get('a_file_with_gbk_encoding.mp3', encoding='gbk') Changelog: + * 1.8.1 (2022-03-12) [still mathiascode-edition] + - MP3 ID3: Set correct file position if tag reading is disabled #119 (thanks to mathiascode) + - MP3: Fix incorrect calculation of duration for VBR encoded MP3s #128 (thanks to mathiascode) * 1.8.0 (2022-03-05) [mathiascode-edition] - Add support for ALAC audio files #130 (thanks to mathiascode) - AIFF: Fixed bitrate calculation for certain files #129 (thanks to mathiascode) diff --git a/tinytag/__init__.py b/tinytag/__init__.py index ddb41e7..8a85310 100644 --- a/tinytag/__init__.py +++ b/tinytag/__init__.py @@ -4,7 +4,7 @@ from .tinytag import TinyTag -__version__ = '1.8.0' +__version__ = '1.8.1' if __name__ == '__main__': diff --git a/tinytag/tinytag.py b/tinytag/tinytag.py index ded5b70..7d6acfb 100644 --- a/tinytag/tinytag.py +++ b/tinytag/tinytag.py @@ -2,14 +2,14 @@ # -*- coding: utf-8 -*- # tinytag - an audio meta info reader -# Copyright (c) 2014-2021 Tom Wallroth +# Copyright (c) 2014-2022 Tom Wallroth # # Sources on github: # http://github.com/devsnd/tinytag/ # MIT License -# Copyright (c) 2014-2021 Tom Wallroth +# Copyright (c) 2014-2022 Tom Wallroth # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal