From d5aa93d9ae3e22c8bd00d8e1fa34565be6de8db6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20H=E1=BB=93ng=20Qu=C3=A2n?= Date: Fri, 27 Nov 2020 14:31:28 +0700 Subject: [PATCH] Bump version 1.5.1 --- README.rst | 1 + pyproject.toml | 2 +- tests/test_single_version.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 661acf1..671860e 100644 --- a/README.rst +++ b/README.rst @@ -4,6 +4,7 @@ single-version .. image:: https://madewithlove.now.sh/vn?heart=true&colorA=%23ffcd00&colorB=%23da251d .. image:: https://badgen.net/pypi/v/single-version + :target: https://pypi.org/project/single-version Utility to let you have a single source of version in your code base. diff --git a/pyproject.toml b/pyproject.toml index 4a507b5..d3fdc52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "single-version" -version = "1.5" +version = "1.5.1" 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 3af7cda..5975fd4 100644 --- a/tests/test_single_version.py +++ b/tests/test_single_version.py @@ -3,7 +3,7 @@ def test_version(): - assert __version__ == '1.5' + assert __version__ == '1.5.1' def test_version_regex():