From b774f233d35787d272286af01996f59265b19a35 Mon Sep 17 00:00:00 2001 From: thebigmunch Date: Fri, 1 May 2020 14:18:52 -0400 Subject: [PATCH] Release 0.11.0 --- CHANGELOG.md | 7 ++++++- pyproject.toml | 14 +++++++++++++- src/audio_metadata/__about__.py | 2 +- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 341390b..d5ab735 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.10.0...master) +[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.11.0...master) + + +## [0.11.0](https://github.com/thebigmunch/audio-metadata/releases/tag/0.11.0) (2020-05-01) + +[Commits](https://github.com/thebigmunch/audio-metadata/compare/0.10.0...0.11.0) ### Added diff --git a/pyproject.toml b/pyproject.toml index d914365..58ea07e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,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.10.0" +version = "0.11.0" license = "MIT" @@ -93,5 +93,17 @@ exclude_lines = [ ] +[tool.interrogate] +fail-under = 100 +ignore-init-method = true +ignore-init-module = true +ignore-magic = true +ignore-private = true +ignore-semiprivate = true +exclude = [ + "src/audio_metadata/__about__.py", +] + + [tool.ward] path = [ "tests" ] diff --git a/src/audio_metadata/__about__.py b/src/audio_metadata/__about__.py index 31d0930..45c7188 100644 --- a/src/audio_metadata/__about__.py +++ b/src/audio_metadata/__about__.py @@ -14,7 +14,7 @@ __summary__ = 'A library for reading and, in the future, writing metadata from audio files.' __url__ = 'https://github.com/thebigmunch/audio-metadata' -__version__ = '0.10.0' +__version__ = '0.11.0' __version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit()) __author__ = 'thebigmunch'