Skip to content

Commit

Permalink
Release 0.8.10
Browse files Browse the repository at this point in the history
  • Loading branch information
nicfit committed Mar 8, 2019
1 parent 5ea9f41 commit f095d37
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 3 deletions.
2 changes: 2 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
14 changes: 14 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
<gabrieldiegoteixeira@gmail.com>


v0.8.9 (2019-01-12) : Descent Into...
--------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion src/eyed3/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)
Expand Down
2 changes: 1 addition & 1 deletion src/eyed3/id3/tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit f095d37

Please sign in to comment.