Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thebigmunch committed Jul 22, 2019
1 parent 763d1de commit 7051c1e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
14 changes: 9 additions & 5 deletions src/audio_metadata/__about__.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
__all__ = [
'__author__', '__author_email__',
'__copyright__', '__license__',
'__summary__', '__title__',
'__url__', '__version__',
'__author__',
'__author_email__',
'__copyright__',
'__license__',
'__summary__',
'__title__',
'__url__',
'__version__',
'__version_info__'
]

__title__ = 'audio-metadata'
__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'
Expand Down

0 comments on commit 7051c1e

Please sign in to comment.