From d0b5911288e6defdf57e2676d111afb596b692cd Mon Sep 17 00:00:00 2001 From: thebigmunch Date: Sun, 27 Jan 2019 05:18:29 -0500 Subject: [PATCH] Release 0.3.4 --- CHANGELOG.md | 7 ++++++- pyproject.toml | 2 +- src/audio_metadata/__about__.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf8a73f..1c007a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.3.3...master) +[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.3.4...master) + + +## [0.3.4](https://github.com/thebigmunch/audio-metadata/releases/tag/0.3.4) (2019-01-27) + +[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.3.3...0.3.4) ### Fixed diff --git a/pyproject.toml b/pyproject.toml index eb96d43..9f211d8 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.3.3" +version = "0.3.4" license = "MIT" diff --git a/src/audio_metadata/__about__.py b/src/audio_metadata/__about__.py index 4667f8f..5553638 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.3.3' +__version__ = '0.3.4' __version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit()) __author__ = 'thebigmunch'