diff --git a/README.md b/README.md index 6a7605b..7fc663a 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,12 @@ supported python versions: and possibly more. Changelog: + * 1.4.0 (2020-04-23): + - detecting file types based on their magic header bytes, #85 + - fixed opus duration being wrong for files with lower sample rate #81 + - implemented support for binary paths #72 + - always cast mp3 bitrates to int, so that CBR and VBR output behaves the sam + - made __str__ deterministic and use json as output format * 1.3.0 (2020-03-09): - added option to ignore encoding errors `ignore_errors` #73 - Improved text decoding for many malformed files diff --git a/tinytag/__init__.py b/tinytag/__init__.py index 64abdfd..1f588e6 100644 --- a/tinytag/__init__.py +++ b/tinytag/__init__.py @@ -4,7 +4,7 @@ import sys -__version__ = '1.3.1' +__version__ = '1.4.0' if __name__ == '__main__': print(TinyTag.get(sys.argv[1]))