From b1f7c6a57d79c341311cb909f83b6ff3bc089f28 Mon Sep 17 00:00:00 2001 From: thebigmunch Date: Thu, 31 Jan 2019 08:28:56 -0500 Subject: [PATCH] Release 0.4.0 --- 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 c8098b9..1ac5469 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.4...master) +[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.4.0...master) + + +## [0.4.0](https://github.com/thebigmunch/audio-metadata/releases/tag/0.4.0) (2019-01-31) + +[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.3.4...0.4.0) ## Added diff --git a/pyproject.toml b/pyproject.toml index 9f211d8..9c1b456 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.4" +version = "0.4.0" license = "MIT" diff --git a/src/audio_metadata/__about__.py b/src/audio_metadata/__about__.py index 5553638..b6697bb 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.4' +__version__ = '0.4.0' __version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit()) __author__ = 'thebigmunch'