diff --git a/AUTHORS.rst b/AUTHORS.rst index dbf94e7c..dbb0f208 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -2,7 +2,7 @@ Authors ------- eyeD3 is written and maintained by: - + * Travis Shirk * nicfit @@ -34,3 +34,4 @@ and has been contributed to by (ordered by date of first contribution): * grun * pyup.io bot * pyup-bot + * Chris Newton diff --git a/HISTORY.rst b/HISTORY.rst index 1b7f0b7d..40c7090a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,20 @@ Release History .. :changelog: +v0.8.3 (2017-10-22) : So Alone +------------------------------- + +Fix +~~~ +- Reload and process after tag removals, fixes #102. (PR #103) +- Display incorrectly encoded strings (usually filenames) + +Other +~~~~~ +- Make the classic output span the actual width of the tty so you can + see the actual path with a long file name. (#92) + + v0.8.2 (2017-09-23) : Standing At the Station ---------------------------------------------- diff --git a/src/eyed3/__about__.py b/src/eyed3/__about__.py index 69e2b091..d80d2f02 100644 --- a/src/eyed3/__about__.py +++ b/src/eyed3/__about__.py @@ -15,8 +15,8 @@ def __parse_version(v): # pragma: nocover return ver, rel, ver_info -__version__ = "0.8.2" -__release_name__ = "Standing At the Station" +__version__ = "0.8.3" +__release_name__ = "So Alone" __years__ = "2002-2017" _, __release__, __version_info__ = __parse_version(__version__)