Skip to content

Commit 9995ab4

Browse files
authored
Prepare for release: v1.2.0 (#445)
* Added changelog for v1.2.0 * Bump version: 1.1.3 → 1.2.0 * Changed year 2024 -> 2025 * Fixed missing version bumps * Fix version in conf.py
1 parent 260e57b commit 9995ab4

File tree

7 files changed

+43
-8
lines changed

7 files changed

+43
-8
lines changed

Changelog.rst

+35
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,41 @@
44
Change history
55
================
66

7+
.. _version-1.2.0:
8+
9+
1.2.0
10+
=====
11+
:release-date: 21 February, 2025
12+
:release-by: Tomer Nosrati
13+
14+
What's Changed
15+
==============
16+
17+
Key Highlights
18+
--------------
19+
- Added Python 3.13 Support.
20+
- Fixed Python 3.8 compatibility issues.
21+
- Replaced :pypi:`pycurl` with :pypi:`urllib3`.
22+
23+
Changelog
24+
---------
25+
- Build(deps): Bump debugpy from 1.8.5 to 1.8.6 (#421)
26+
- Enable Codespell autofix (#422)
27+
- Build(deps): Bump redis from 5.0.8 to 5.1.0 (#423)
28+
- Build(deps-dev): Bump types-redis from 4.6.0.20240903 to 4.6.0.20241004 (#424)
29+
- Build(deps): Bump redis from 5.1.0 to 5.1.1 (#425)
30+
- Build(deps): Bump debugpy from 1.8.6 to 1.8.7 (#427)
31+
- Build(deps-dev): Bump sphinxcontrib-mermaid from 0.9.2 to 1.0.0 (#428)
32+
- Build(deps-dev): Bump mypy from 1.11.2 to 1.12.0 (#430)
33+
- Build(deps): Bump psutil from 6.0.0 to 6.1.0 (#432)
34+
- Build(deps): Bump setuptools from 75.1.0 to 75.2.0 (#431)
35+
- Fixed lint issues (#433)
36+
- Added Python 3.13 Initial Support (#420)
37+
- Build(deps): Bump codecov/codecov-action from 4 to 5 (#435)
38+
- fix: invalid SPDX license ID in project metadata (#438)
39+
- Bumping Dependencies (inc. pyproject.toml) (#436)
40+
- Prepare for release: v1.2.0 (#445)
41+
742
.. _version-1.1.3:
843

944
1.1.3

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2024 Tomer Nosrati. All rights reserved.
1+
Copyright (c) 2025 Tomer Nosrati. All rights reserved.
22

33
pytest-celery is licensed under The BSD License (3 Clause, also known as
44
the new BSD license). The license is an OSI approved Open Source

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

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

4-
:Version: 1.1.3
4+
:Version: 1.2.0
55
:Web: https://pytest-celery.readthedocs.io/en/latest/
66
:Download: https://pypi.org/project/pytest-celery/
77
:Source: https://github.com/celery/pytest-celery/

docs/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"pytest_celery",
55
__file__,
66
project="pytest_celery",
7-
version_dev="1.1",
8-
version_stable="1.0",
7+
version_dev="1.2",
8+
version_stable="1.1",
99
canonical_url="https://pytest-celery.readthedocs.io/",
1010
webdomain="pytest-celery.readthedocs.io",
1111
github_project="celery/pytest-celery",
1212
author="Tomer Nosrati",
1313
author_name="Tomer Nosrati",
14-
copyright="2024",
14+
copyright="2025",
1515
publisher="Celery Project",
1616
html_logo="images/celery_512.png",
1717
html_favicon="images/favicon.ico",

docs/copyright.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ by Tomer Nosrati
99

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

12-
Copyright |copy| 2024, Tomer Nosrati.
12+
Copyright |copy| 2025, Tomer Nosrati.
1313

1414
All rights reserved. This material may be copied or distributed only
1515
subject to the terms and conditions set forth in the `Creative Commons

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ description = "Pytest plugin for Celery"
6262
homepage = "https://github.com/celery/pytest-celery"
6363
license = "BSD-3-Clause"
6464
name = "pytest-celery"
65-
version = "1.1.3"
65+
version = "1.2.0"
6666
readme = "README.rst"
6767
keywords = ["pytest", "celery"]
6868

src/pytest_celery/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# flake8: noqa
44

55

6-
__version__ = "1.1.3"
6+
__version__ = "1.2.0"
77
__author__ = "Tomer Nosrati"
88
__contact__ = "[email protected]"
99
__homepage__ = "https://pytest-celery.readthedocs.io/"

0 commit comments

Comments
 (0)