Skip to content

Commit

Permalink
bumped version to 1.4.0 and added changelog entries
Browse files Browse the repository at this point in the history
  • Loading branch information
devsnd committed Apr 23, 2020
1 parent faf11ab commit 978d796
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tinytag/__init__.py
Expand Up @@ -4,7 +4,7 @@
import sys


__version__ = '1.3.1'
__version__ = '1.4.0'

if __name__ == '__main__':
print(TinyTag.get(sys.argv[1]))

0 comments on commit 978d796

Please sign in to comment.