diff --git a/CHANGELOG.md b/CHANGELOG.md index bac149e..c0c74bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,12 +6,17 @@ This project adheres to [Semantic Versioning](https://semver.org). ## [Unreleased](https://github.com/thebigmunch/audio-metadata/tree/master) -[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.4.0...master) +[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.5.0...master) + + +## [0.5.0](https://github.com/thebigmunch/audio-metadata/releases/tag/0.5.0) (2019-07-22) + +[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.4.0...0.5.0) ### Added * ``bit_depth`` to ``WAVStreamInfo``. -* Add support for RIFF tags to WAV. +* Support for RIFF tags to WAV. ### Changed @@ -21,6 +26,7 @@ This project adheres to [Semantic Versioning](https://semver.org). * Force lowercase comparison. * Don't require period. * Rename ``VorbisComment`` to ``VorbisComments``. +* Improve MP3 frame detection. ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 85893f2..0e13cbe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "audio-metadata" description = "A library for reading and, in the future, writing metadata from audio files." -version = "0.4.0" +version = "0.5.0" license = "MIT" diff --git a/src/audio_metadata/__about__.py b/src/audio_metadata/__about__.py index b6697bb..1c7cbaa 100644 --- a/src/audio_metadata/__about__.py +++ b/src/audio_metadata/__about__.py @@ -1,8 +1,12 @@ __all__ = [ - '__author__', '__author_email__', - '__copyright__', '__license__', - '__summary__', '__title__', - '__url__', '__version__', + '__author__', + '__author_email__', + '__copyright__', + '__license__', + '__summary__', + '__title__', + '__url__', + '__version__', '__version_info__' ] @@ -10,7 +14,7 @@ __summary__ = 'A library for reading and, in the future, writing metadata from audio files.' __url__ = 'https://github.com/thebigmunch/audio-metadata' -__version__ = '0.4.0' +__version__ = '0.5.0' __version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit()) __author__ = 'thebigmunch'