From 2a76897e4fb13f2e9b7de30f8dfac8edf9e453e7 Mon Sep 17 00:00:00 2001 From: thebigmunch Date: Tue, 15 Jan 2019 14:06:09 -0500 Subject: [PATCH] Release 0.3.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 4cce27f..15ea2f4 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.2.0...master) +[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.3.0...master) + + +## [0.3.0](https://github.com/thebigmunch/audio-metadata/releases/tag/0.3.0) (2019-01-15) + +[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.2.0...0.3.0) ### Added diff --git a/pyproject.toml b/pyproject.toml index f9fd6cc..86374f7 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.2.0" +version = "0.3.0" license = "MIT" diff --git a/src/audio_metadata/__about__.py b/src/audio_metadata/__about__.py index bcdc4b9..f850c95 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.2.0' +__version__ = '0.3.0' __version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit()) __author__ = 'thebigmunch'