From 1d8a654dd1878bea250d5fe8ff16cf19457c7ff1 Mon Sep 17 00:00:00 2001 From: thebigmunch Date: Tue, 13 Nov 2018 06:19:39 -0500 Subject: [PATCH] Release 0.2.0 --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- src/audio_metadata/__about__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ff2833..c343974 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/pyproject.toml b/pyproject.toml index 9b570ca..a15b8f8 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.1.0" +version = "0.2.0" license = "MIT" diff --git a/src/audio_metadata/__about__.py b/src/audio_metadata/__about__.py index 2457adf..2f7034f 100644 --- a/src/audio_metadata/__about__.py +++ b/src/audio_metadata/__about__.py @@ -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'