From 21e65cd4131b4c639654c6c158d05f8b0d0fdff6 Mon Sep 17 00:00:00 2001 From: Mat Date: Wed, 18 Oct 2023 16:05:19 +0300 Subject: [PATCH] Bump version to 1.10.0 --- README.md | 2 +- tinytag/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4c88841..6ea468c 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ To use a file-like object (e.g. BytesIO) instead of a file path, pass a ## Changelog -### 1.10.0 (unreleased) +### 1.10.0 (2023-10-18) - Add support for OGG FLAC format #182 - Add support for OGG Speex format #181 diff --git a/tinytag/__init__.py b/tinytag/__init__.py index f8e056f..e113b4b 100644 --- a/tinytag/__init__.py +++ b/tinytag/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- -__version__ = '1.9.0' +__version__ = '1.10.0' import sys from .tinytag import TinyTag, TinyTagException, ID3, Ogg, Wave, Flac # noqa: F401