Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thebigmunch committed Oct 18, 2019
1 parent b18bc9e commit 2ddde3a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ 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.5.0...master)
[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.6.0...master)


## [0.6.0](https://github.com/thebigmunch/audio-metadata/releases/tag/0.6.0) (2019-10-18)

[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.5.0...0.6.0)

### Added

Expand Down Expand Up @@ -36,6 +41,12 @@ This project adheres to [Semantic Versioning](https://semver.org).
This prevents some misidentification, specifically
in the case of little-endian BOM of UTF-16-encoded text.
* Rename ``XingTOC`` to ``XingToC``.
* Improve load(s) performance:
* Use ``functools.lru_cache`` to remove penalty
of calling ``MP3Streaminfo.find_mpeg_frames``
once when determining format of MP3s and
again when loading the MP3.
* Use ``bitstruct`` C extension when available.

### Removed

Expand Down
4 changes: 2 additions & 2 deletions 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.5.0"
version = "0.6.0"

license = "MIT"

Expand All @@ -24,7 +24,7 @@ bidict = "0.*"
bitstruct = ">=6.0,<9.0"
more-itertools = ">=4.0,<8.0"
pprintpp = "0.*"
tbm-utils = "^1.0.0"
tbm-utils = "^1.0"
wrapt = "^1.0"

coverage = { version = "^4.5", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion src/audio_metadata/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,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.5.0'
__version__ = '0.6.0'
__version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit())

__author__ = 'thebigmunch'
Expand Down

0 comments on commit 2ddde3a

Please sign in to comment.