diff --git a/pyproject.toml b/pyproject.toml index ee0310e..6abf3ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "single-version" -version = "1.2.2" +version = "1.3.0" description = "Small utility to define version string for Poetry-style Python project." authors = ["Nguyễn Hồng Quân "] maintainers = [ diff --git a/tests/test_single_version.py b/tests/test_single_version.py index f7524d6..d6e65fa 100644 --- a/tests/test_single_version.py +++ b/tests/test_single_version.py @@ -3,7 +3,7 @@ def test_version(): - assert __version__ == '1.2.2' + assert __version__ == '1.3.0' def test_version_regex():