diff --git a/AUTHORS.rst b/AUTHORS.rst index 9e24a9b1..7046b710 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -35,3 +35,5 @@ and has been contributed to by (ordered by date of first contribution): * deoren@users.noreply.github.com * chamatht@gmail.com * Mic92@users.noreply.github.com + * gabrieldiegoteixeira@gmail.com + * guillaume.web@gmail.com diff --git a/HISTORY.rst b/HISTORY.rst index f58c36b2..f26c97ca 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,20 @@ Release History .. :changelog: +v0.8.10 (2019-03-07) : Apples +------------------------------ + +New +~~~ +- Log warning when ID3 v1.x text truncation occurs. Fixes #299. + +Fix +~~~ +- Honor APIC text encoding when description is "". #200. +- Fixed bug with improper types when re-rendering unique file ID. (#324) + + + v0.8.9 (2019-01-12) : Descent Into... -------------------------------------- diff --git a/requirements/test.txt b/requirements/test.txt index 014a9a9a..9a5f4990 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -1,5 +1,5 @@ factory-boy==2.11.1 -mock; python_version < '3.4' +mock; python_version < "3.4" pytest==4.1.1 pytest-cov==2.6.1 pytest-runner==4.2 diff --git a/src/eyed3/__about__.py b/src/eyed3/__about__.py index 0ad2302d..c0d7251a 100644 --- a/src/eyed3/__about__.py +++ b/src/eyed3/__about__.py @@ -16,7 +16,7 @@ def __parse_version(v): # pragma: nocover __version__ = "0.8.10" -__release_name__ = "" +__release_name__ = "Apples" __years__ = "2002-2019" _, __release__, __version_info__ = __parse_version(__version__) diff --git a/src/eyed3/id3/tag.py b/src/eyed3/id3/tag.py index afe22e13..adf2f70a 100644 --- a/src/eyed3/id3/tag.py +++ b/src/eyed3/id3/tag.py @@ -841,7 +841,7 @@ def _saveV1Tag(self, version): def pack(s, n): assert(type(s) is BytesType) if len(s) > n: - log.warning(f"ID3 v1.x text value truncated to length {n}") + log.warning("ID3 v1.x text value truncated to length {n}".format(n=n)) return s.ljust(n, b'\x00')[:n] def encode(s):