Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for release: v1.2.0 #445

Merged
merged 5 commits into from
Feb 21, 2025
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,41 @@
Change history
================

.. _version-1.2.0:

1.2.0
=====
:release-date: 21 February, 2025
:release-by: Tomer Nosrati

What's Changed
==============

Key Highlights
--------------
- Added Python 3.13 Support.
- Fixed Python 3.8 compatibility issues.
- Replaced :pypi:`pycurl` with :pypi:`urllib3`.

Changelog
---------
- Build(deps): Bump debugpy from 1.8.5 to 1.8.6 (#421)
- Enable Codespell autofix (#422)
- Build(deps): Bump redis from 5.0.8 to 5.1.0 (#423)
- Build(deps-dev): Bump types-redis from 4.6.0.20240903 to 4.6.0.20241004 (#424)
- Build(deps): Bump redis from 5.1.0 to 5.1.1 (#425)
- Build(deps): Bump debugpy from 1.8.6 to 1.8.7 (#427)
- Build(deps-dev): Bump sphinxcontrib-mermaid from 0.9.2 to 1.0.0 (#428)
- Build(deps-dev): Bump mypy from 1.11.2 to 1.12.0 (#430)
- Build(deps): Bump psutil from 6.0.0 to 6.1.0 (#432)
- Build(deps): Bump setuptools from 75.1.0 to 75.2.0 (#431)
- Fixed lint issues (#433)
- Added Python 3.13 Initial Support (#420)
- Build(deps): Bump codecov/codecov-action from 4 to 5 (#435)
- fix: invalid SPDX license ID in project metadata (#438)
- Bumping Dependencies (inc. pyproject.toml) (#436)
- Prepare for release: v1.2.0 (#445)

.. _version-1.1.3:

1.1.3
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2024 Tomer Nosrati. All rights reserved.
Copyright (c) 2025 Tomer Nosrati. All rights reserved.

pytest-celery is licensed under The BSD License (3 Clause, also known as
the new BSD license). The license is an OSI approved Open Source
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

|build-status| |coverage| |license| |semgrep| |pyversion| |pyimp| |ocbackerbadge| |ocsponsorbadge| |poetry|

:Version: 1.1.3
:Version: 1.2.0
:Web: https://pytest-celery.readthedocs.io/en/latest/
:Download: https://pypi.org/project/pytest-celery/
:Source: https://github.com/celery/pytest-celery/
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
github_project="celery/pytest-celery",
author="Tomer Nosrati",
author_name="Tomer Nosrati",
copyright="2024",
copyright="2025",
publisher="Celery Project",
html_logo="images/celery_512.png",
html_favicon="images/favicon.ico",
Expand Down
2 changes: 1 addition & 1 deletion docs/copyright.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ by Tomer Nosrati

.. |copy| unicode:: U+000A9 .. COPYRIGHT SIGN

Copyright |copy| 2024, Tomer Nosrati.
Copyright |copy| 2025, Tomer Nosrati.

All rights reserved. This material may be copied or distributed only
subject to the terms and conditions set forth in the `Creative Commons
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ description = "Pytest plugin for Celery"
homepage = "https://github.com/celery/pytest-celery"
license = "BSD-3-Clause"
name = "pytest-celery"
version = "1.1.3"
version = "1.2.0"
readme = "README.rst"
keywords = ["pytest", "celery"]

Expand Down
2 changes: 1 addition & 1 deletion src/pytest_celery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# flake8: noqa


__version__ = "1.1.3"
__version__ = "1.2.0"
__author__ = "Tomer Nosrati"
__contact__ = "tomer.nosrati@gmail.com"
__homepage__ = "https://pytest-celery.readthedocs.io/"
Expand Down
Loading