Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thebigmunch committed Nov 13, 2018
1 parent 9e722a5 commit 1d8a654
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ This project adheres to [Semantic Versioning](https://semver.org).

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



## [0.2.0](https://github.com/thebigmunch/audio-metadata/releases/tag/0.2.0) (2018-11-13)

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

### Added

* Add support for loading ID3v2.2 tags.
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.1.0"
version = "0.2.0"

license = "MIT"

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 @@ -10,7 +10,7 @@
__summary__ = 'A library for reading and, in the future, writing metadata from audio files.'
__url__ = 'https://github.com/thebigmunch/audio-metadata'

__version__ = '0.1.0'
__version__ = '0.2.0'
__version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit())

__author__ = 'thebigmunch'
Expand Down

0 comments on commit 1d8a654

Please sign in to comment.