diff --git a/pymusixmatch/__init__.py b/pymusixmatch/__init__.py index 6f96ab7..40a787a 100644 --- a/pymusixmatch/__init__.py +++ b/pymusixmatch/__init__.py @@ -1,4 +1,4 @@ from .musixmatch import Musixmatch # noqa: F401 -__version__ = "0.1.1" +__version__ = "0.1.2" diff --git a/pyproject.toml b/pyproject.toml index 862add8..be95ed5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pymusixmatch" -version = "0.1.1" +version = "0.1.2" 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 507a130..f903ab8 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version() -> None: - assert __version__ == "0.1.1" + assert __version__ == "0.1.2"