Skip to content

Commit

Permalink
Release 0.9a1
Browse files Browse the repository at this point in the history
  • Loading branch information
nicfit committed Mar 16, 2019
1 parent 486e0cb commit c68a887
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
23 changes: 19 additions & 4 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,31 @@ Release History

.. :changelog:
v0.9a0 (2019-02-09)
-------------------
v0.9a1 (2019-03-16)
------------------------

New
~~~
- Dropped Python 2 support.
- A new `jsontag` plugin for converting tags to JSON.
- A new `extract` plugin for extracting tags from media.
- Log warning when ID3 v1.x text truncation occurs. Fixes #299.

Changes
~~~~~~~
- Merge 0.9 devel (no more Python2)
- New ValueError for _setNum when unknown type/values are passed.

Fix
~~~
- Double quoting matters on env markers, hmm.
- [extract] Support only ID3 tags and v1.x tags.
- [jsontag] No need to track image files.
- Unbound variable for track num/total. Fixes #327.
- Fixed MP3 header search to not false match on BOMs.
- Honor APIC text encoding when description is "". #200.
- Fixed bug with improper types when re-rendering unique file ID. (#324)
<gabrieldiegoteixeira@gmail.com>
- UFID fixes, update (#325)
<gabrieldiegoteixeira@gmail.com>


v0.8.10 (2019-03-07) : Apples
Expand Down
2 changes: 1 addition & 1 deletion src/eyed3/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __parse_version(v): # pragma: nocover
return ver, rel, ver_info


__version__ = "0.9a0"
__version__ = "0.9a1"
__release_name__ = ""
__years__ = "2002-2019"

Expand Down
1 change: 0 additions & 1 deletion src/eyed3/plugins/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def handleFile(self, f, *args, **kwargs):
# ID3 v1.x
tag_data = tag_file.read()[-128:]


if self.args.output_file:
# --output-file

Expand Down

0 comments on commit c68a887

Please sign in to comment.