From 20d8ad26024521392b61f95c7ca12db0f2c4bd04 Mon Sep 17 00:00:00 2001 From: botpub <52496925+botpub@users.noreply.github.com> Date: Mon, 10 Apr 2023 10:48:13 +0000 Subject: [PATCH] Release pytest-sugar 0.9.7 --- CHANGES.rst | 6 ++++++ RELEASE.md | 4 ---- pyproject.toml | 2 +- pytest_sugar.py | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGES.rst b/CHANGES.rst index 79f7b75..fcf65f6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changelog --------- +0.9.7 - 2023-04-10 +^^^^^^^^^^^^^^^^^^ + +- For long-running tests, display minutes and not only seconds (thanks @last-partizan) +- Add support for Pytest’s ``--header`` option (thanks @wiresv) + 0.9.6 (2022-11-5) ^^^^^^^^^^^^^^^^^^^ diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 35a8b92..0000000 --- a/RELEASE.md +++ /dev/null @@ -1,4 +0,0 @@ -Release type: patch - -- For long-running tests, display minutes and not only seconds (thanks @last-partizan) -- Add support for Pytest’s ``--header`` option (thanks @wiresv) diff --git a/pyproject.toml b/pyproject.toml index 3ff1114..ce4fa5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-sugar" -version = "0.9.6" +version = "0.9.7" description = "Pytest plugin that adds a progress bar and other visual enhancements" authors = ["Teemu ", "Janne Vanhala "] license = "BSD" diff --git a/pytest_sugar.py b/pytest_sugar.py index b7ab866..53dc42a 100644 --- a/pytest_sugar.py +++ b/pytest_sugar.py @@ -26,7 +26,7 @@ from _pytest.terminal import TerminalReporter, format_session_duration from termcolor import colored -__version__ = "0.9.6" +__version__ = "0.9.7" LEN_RIGHT_MARGIN = 0 LEN_PROGRESS_PERCENTAGE = 5