Skip to content

Commit

Permalink
bumped version to 1.8.1, updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
devsnd committed Mar 12, 2022
1 parent 8036428 commit 32e4d39
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tinytag/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .tinytag import TinyTag


__version__ = '1.8.0'
__version__ = '1.8.1'


if __name__ == '__main__':
Expand Down
4 changes: 2 additions & 2 deletions tinytag/tinytag.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 32e4d39

Please sign in to comment.