From 92ab8b1620cddeb83c92a1743890aea8b2467d18 Mon Sep 17 00:00:00 2001 From: Hudson Brendon Date: Sat, 28 Dec 2024 02:49:17 -0300 Subject: [PATCH] fix: bump version --- pymusixmatch/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pymusixmatch/__init__.py b/pymusixmatch/__init__.py index b89710e..1469773 100644 --- a/pymusixmatch/__init__.py +++ b/pymusixmatch/__init__.py @@ -1,4 +1,4 @@ from .musixmatch import Musixmatch # noqa: F401 -__version__ = "0.4.0" +__version__ = "0.1.0" diff --git a/pyproject.toml b/pyproject.toml index 7577742..24467cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pymusixmatch" -version = "0.4.0" +version = "0.1.0" description = "Simple integrate of API musixmatch.com with python" authors = ["Hudson Brendon "] readme = "README.md" diff --git a/tests/test_version.py b/tests/test_version.py index 046a884..0a14650 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version() -> None: - assert __version__ == "0.4.0" + assert __version__ == "0.1.0"