From 8c368747503bd9ead5dbcbc990e5f21bd1f7c9cb Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Mon, 12 Aug 2024 11:58:01 +0300 Subject: [PATCH] Prepare for release: v1.1.1 (#379) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added changelog for v1.1.1 * Bump version: 1.1.0 → 1.1.1 --- Changelog.rst | 14 ++++++++++++++ README.rst | 2 +- pyproject.toml | 2 +- src/pytest_celery/__init__.py | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index 481aa19a..b6348596 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -4,6 +4,20 @@ Change history ================ +.. _version-1.1.1: + +1.1.1 +===== +:release-date: 12 August, 2024 +:release-by: Tomer Nosrati + +What's Changed +============== + +- Added installation markers for pycurl (#378) +- Changed --reruns 3 -> 5 for Integration and Smoke CI (#380) +- Prepare for release: v1.1.1 (#379) + .. _version-1.1.0: 1.1.0 diff --git a/README.rst b/README.rst index 65ea9a9f..aef93ce1 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ |build-status| |coverage| |license| |semgrep| |pyversion| |pyimp| |ocbackerbadge| |ocsponsorbadge| |poetry| -:Version: 1.1.0 +:Version: 1.1.1 :Web: https://pytest-celery.readthedocs.io/en/latest/ :Download: https://pypi.org/project/pytest-celery/ :Source: https://github.com/celery/pytest-celery/ diff --git a/pyproject.toml b/pyproject.toml index 0ca05789..3d4e8dff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,7 +61,7 @@ description = "Pytest plugin for Celery" homepage = "https://github.com/celery/pytest-celery" license = "BSD" name = "pytest-celery" -version = "1.1.0" +version = "1.1.1" readme = "README.rst" keywords = ["pytest", "celery"] diff --git a/src/pytest_celery/__init__.py b/src/pytest_celery/__init__.py index 15b7ed7d..fb6297fc 100644 --- a/src/pytest_celery/__init__.py +++ b/src/pytest_celery/__init__.py @@ -3,7 +3,7 @@ # flake8: noqa -__version__ = "1.1.0" +__version__ = "1.1.1" __author__ = "Tomer Nosrati" __contact__ = "tomer.nosrati@gmail.com" __homepage__ = "https://pytest-celery.readthedocs.io/"