Skip to content

Commit

Permalink
Release 0.9.7 prep (#587)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicfit authored Oct 8, 2022
1 parent 552cbed commit 6ae1554
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 12 deletions.
37 changes: 37 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,43 @@ Release History

.. :changelog:
v0.9.7 (2022-10-07) : Sunshine
----------------------------------

New
~~~
- [fixup-plugin] Added --no-dir-rename.
- Add remove-all-unknown to classic plugin. <[email protected]>
- Track/disc number support for JSON/YAML plugins (and tests)
- CountAndTotalTuple named tuple for count/total values.
- EyeD3 __all__ includes core.AudioFile.
- AudioFile.__str__ returns path.
- Strict render Frame flag to continue on render errors. Applied to RelVolAdjFrameV24, etc
- Track unsupported frames and add `--remove-all-unknown` classic plugin
option (#586) <[email protected]>

Changes
~~~~~~~
- Removed display-plugin due to Grako EOL (#585)
- [stats] Print bytes as text and filter private members.
- Remove Python 3.6 support, EOL. (#560)

Fix
~~~
- Doc grammar fixed (#537) <[email protected]>
- Fix problem when frame file format invalid, and input.read() returns
no more data at all - this had the potential to loop endlessly. (#539)
<[email protected], [email protected]>

Other
~~~~~
- Create codeql-analysis.yml.
- Documentation updates.
- Also updated deps, and removed Python 3.7 from official testing.
- Docs: Fix a few typos (#573) <[email protected]>
- Spelling fixes (#559) <[email protected]>
- Typo fixes (#558) <[email protected]>

v0.9.6 (2020-12-28) : True Blue
----------------------------------

Expand Down
10 changes: 5 additions & 5 deletions eyed3/__regarding__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ class Version:


project_name = "eyeD3"
version = "0.9.7b0"
release_name = ""
version = "0.9.7"
release_name = "Sunshine"
author = "Travis Shirk"
author_email = "[email protected]"
years = "2002-2021"
years = "2002-2022"
version_info = Version(
0, 9, 7,
"b0", ""
"final", "Sunshine"
)
description = "Python audio data toolkit (ID3 and MP3)"
homepage = ""
homepage = "https://eyeD3.nicfit.net/"
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@ build-backend = "poetry.masonry.api"


[tool.regarding]
release_name = ""
years = "2002-2021"
release_name = "Sunshine"
years = "2002-2022"

[tool.poetry]
name = "eyeD3"
version = "0.9.7b"
version = "0.9.7"
description = "Python audio data toolkit (ID3 and MP3)"
authors = ["Travis Shirk <[email protected]>"]
maintainers = ["Travis Shirk <[email protected]>"]
homepage = "https://eyeD3.nicfit.net/"
repository = "https://github.com/nicfit/eyeD3"
license = "GPL-3.0-or-later"
classifiers = [
"Environment :: Console",
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@

setup_kwargs = {
'name': 'eyed3',
'version': '0.9.7b0',
'version': '0.9.7',
'description': 'Python audio data toolkit (ID3 and MP3)',
'long_description': 'Status\n------\n.. image:: https://img.shields.io/pypi/v/eyeD3.svg\n :target: https://pypi.python.org/pypi/eyeD3/\n :alt: Latest Version\n.. image:: https://img.shields.io/pypi/status/eyeD3.svg\n :target: https://pypi.python.org/pypi/eyeD3/\n :alt: Project Status\n.. image:: https://travis-ci.org/nicfit/eyeD3.svg?branch=master\n :target: https://travis-ci.org/nicfit/eyeD3\n :alt: Build Status\n.. image:: https://img.shields.io/pypi/l/eyeD3.svg\n :target: https://pypi.python.org/pypi/eyeD3/\n :alt: License\n.. image:: https://img.shields.io/pypi/pyversions/eyeD3.svg\n :target: https://pypi.python.org/pypi/eyeD3/\n :alt: Supported Python versions\n.. image:: https://coveralls.io/repos/nicfit/eyeD3/badge.svg\n :target: https://coveralls.io/r/nicfit/eyeD3\n :alt: Coverage Status\n\n\nAbout\n-----\neyeD3_ is a Python tool for working with audio files, specifically MP3 files\ncontaining ID3_ metadata (i.e. song info).\n\nIt provides a command-line tool (``eyeD3``) and a Python library\n(``import eyed3``) that can be used to write your own applications or\nplugins that are callable from the command-line tool.\n\nFor example, to set some song information in an mp3 file called\n``song.mp3``::\n\n $ eyeD3 -a Integrity -A "Humanity Is The Devil" -t "Hollow" -n 2 song.mp3\n\nWith this command we\'ve set the artist (``-a/--artist``), album\n(``-A/--album``), title (``-t/--title``), and track number\n(``-n/--track-num``) properties in the ID3 tag of the file. This is the\nstandard interface that eyeD3 has always had in the past, therefore it\nis also the default plugin when no other is specified.\n\nThe results of this command can be seen by running the ``eyeD3`` with no\noptions.\n\n::\n\n $ eyeD3 song.mp3\n song.mp3\t[ 3.06 MB ]\n -------------------------------------------------------------------------\n ID3 v2.4:\n title: Hollow\n artist: Integrity\n album: Humanity Is The Devil\n album artist: None\n track: 2\n -------------------------------------------------------------------------\n\nThe same can be accomplished using Python.\n\n::\n\n import eyed3\n\n audiofile = eyed3.load("song.mp3")\n audiofile.tag.artist = "Token Entry"\n audiofile.tag.album = "Free For All Comp LP"\n audiofile.tag.album_artist = "Various Artists"\n audiofile.tag.title = "The Edge"\n audiofile.tag.track_num = 3\n\n audiofile.tag.save()\n\neyeD3_ is written and maintained by `Travis Shirk`_ and is licensed under\nversion 3 of the GPL_.\n\nFeatures\n--------\n\n* Python package (`import eyed3`) for writing applications and plugins.\n* `eyeD3` : Command-line tool driver script that supports plugins.\n* Easy ID3 editing/viewing of audio metadata from the command-line.\n* Plugins for: Tag to string formatting (display), album fixing (fixup),\n cover art downloading (art), collection stats (stats),\n and json/yaml/jabber/nfo output formats, and more included.\n* Support for ID3 versions 1.x, 2.2 (read-only), 2.3, and 2.4.\n* Support for the MP3 audio format exposing details such as play time, bit\n rate, sampling frequency, etc.\n* Abstract design allowing future support for different audio formats and\n metadata containers.\n\nGet Started\n-----------\n\nPython >= 3.7 is required.\n\nFor `installation instructions`_ or more complete `documentation`_ see\nhttp://eyeD3.nicfit.net/\n\nPlease post feedback and/or defects on the `issue tracker`_, or `mailing list`_.\n\n.. _eyeD3: http://eyeD3.nicfit.net/\n.. _Travis Shirk: [email protected]\n.. _issue tracker: https://github.com/nicfit/eyeD3/issues\n.. _mailing list: https://groups.google.com/forum/?fromgroups#!forum/eyed3-users\n.. _installation instructions: http://eyeD3.nicfit.net/index.html#installation\n.. _documentation: http://eyeD3.nicfit.net/index.html#documentation\n.. _GPL: http://www.gnu.org/licenses/gpl-2.0.html\n.. _ID3: http://id3.org/\n\n',
'author': 'Travis Shirk',
'author_email': '[email protected]',
'maintainer': 'None',
'maintainer_email': 'None',
'url': 'None',
'maintainer': 'Travis Shirk',
'maintainer_email': '[email protected]',
'url': 'https://eyeD3.nicfit.net/',
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
Expand Down

0 comments on commit 6ae1554

Please sign in to comment.