|
| 1 | +Changelog |
| 2 | +--------- |
| 3 | + |
| 4 | +Upcoming |
| 5 | +'''''''' |
| 6 | + |
| 7 | +- Dropped support for Python 3.7 and 3.8 |
| 8 | +- Added minimal contribution guidelines to CONTRIBUTING.md |
| 9 | +- Changed project linter and formatter from ``flake8`` to ``ruff``. Reformatted |
| 10 | + the codebase with ``ruff``. |
| 11 | +- Moved changelog into its own file, ``changelog.rst``. Also added github workflow |
| 12 | + for automatic changelog reminders. |
| 13 | + |
| 14 | +v0.13.0 |
| 15 | +''''''' |
| 16 | + |
| 17 | +- Add a mapping compatible with Plex and ffmpeg for the "original date" |
| 18 | + fields. |
| 19 | +- Remove an unnecessary dependency on `six`. |
| 20 | +- Replace `imghdr` with `filetype` to support Python 3.13. |
| 21 | + |
| 22 | +v0.12.0 |
| 23 | +''''''' |
| 24 | + |
| 25 | +- Add the multiple-valued properties ``artists_credit``, ``artists_sort``, |
| 26 | + ``albumartists_credit``, and ``albumartists_sort``. |
| 27 | + |
| 28 | +v0.11.0 |
| 29 | +''''''' |
| 30 | + |
| 31 | +- List-valued properties now return ``None`` instead of an empty list when the |
| 32 | + underlying tags are missing altogether. |
| 33 | + |
| 34 | +v0.10.1 |
| 35 | +''''''' |
| 36 | + |
| 37 | +- Fix a test failure that arose with Mutagen 1.46. |
| 38 | +- Require Python 3.7 or later. |
| 39 | + |
| 40 | +v0.10.0 |
| 41 | +''''''' |
| 42 | + |
| 43 | +- Add the multiple-valued properties ``albumtypes``, ``catalognums`` and |
| 44 | + ``languages``. |
| 45 | +- The ``catalognum`` property now refers to additional file tags named |
| 46 | + ``CATALOGID`` and ``DISCOGS_CATALOG`` (but only for reading, not writing). |
| 47 | +- The multi-valued ``albumartists`` property now refers to additional file |
| 48 | + tags named ``ALBUM_ARTIST`` and ``ALBUM ARTISTS``. (The latter |
| 49 | + is used only for reading.) |
| 50 | +- The ``ListMediaField`` class now doesn't concatenate multiple lists if |
| 51 | + found. The first available tag is used instead, like with other kinds of |
| 52 | + fields. |
| 53 | + |
| 54 | +v0.9.0 |
| 55 | +'''''' |
| 56 | + |
| 57 | +- Add the properties ``bitrate_mode``, ``encoder_info`` and |
| 58 | + ``encoder_settings``. |
| 59 | + |
| 60 | +v0.8.1 |
| 61 | +'''''' |
| 62 | + |
| 63 | +- Fix a regression in v0.8.0 that caused a crash on Python versions below 3.8. |
| 64 | + |
| 65 | +v0.8.0 |
| 66 | +'''''' |
| 67 | + |
| 68 | +- MediaFile now requires Python 3.6 or later. |
| 69 | +- Added support for Wave (`.wav`) files. |
| 70 | + |
| 71 | +v0.7.0 |
| 72 | +'''''' |
| 73 | + |
| 74 | +- Mutagen 1.45.0 or later is now required. |
| 75 | +- MediaFile can now use file-like objects (instead of just the filesystem, via |
| 76 | + filenames). |
| 77 | + |
| 78 | +v0.6.0 |
| 79 | +'''''' |
| 80 | + |
| 81 | +- Enforce a minimum value for SoundCheck gain values. |
| 82 | + |
| 83 | +v0.5.0 |
| 84 | +'''''' |
| 85 | + |
| 86 | +- Refactored the distribution to use `Flit`_. |
| 87 | + |
| 88 | +.. _Flit: https://flit.readthedocs.io/ |
| 89 | + |
| 90 | +v0.4.0 |
| 91 | +'''''' |
| 92 | + |
| 93 | +- Added a ``barcode`` field. |
| 94 | +- Added new tag mappings for ``albumtype`` and ``albumstatus``. |
| 95 | + |
| 96 | +v0.3.0 |
| 97 | +'''''' |
| 98 | + |
| 99 | +- Fixed tests for compatibility with Mutagen 1.43. |
| 100 | +- Fix the MPEG-4 tag mapping for the ``label`` field to use the right |
| 101 | + capitalization. |
| 102 | + |
| 103 | +v0.2.0 |
| 104 | +'''''' |
| 105 | + |
| 106 | +- R128 gain tags are now stored in Q7.8 integer format, as per |
| 107 | + `the relevant standard`_. |
| 108 | +- Added an ``mb_workid`` field. |
| 109 | +- The Python source distribution now includes an ``__init__.py`` file that |
| 110 | + makes it easier to run the tests. |
| 111 | + |
| 112 | +.. _the relevant standard: https://tools.ietf.org/html/rfc7845.html#page-25 |
| 113 | + |
| 114 | +v0.1.0 |
| 115 | +'''''' |
| 116 | + |
| 117 | +This is the first independent release of MediaFile. |
| 118 | +It is now synchronised with the embedded version released with `beets`_ v1.4.8. |
| 119 | + |
| 120 | +.. _beets: https://beets.io |
0 commit comments