Skip to content

Commit

Permalink
Release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thebigmunch committed May 1, 2020
1 parent df2999f commit b774f23
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
14 changes: 13 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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" ]
2 changes: 1 addition & 1 deletion src/audio_metadata/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit b774f23

Please sign in to comment.