Skip to content

Prepare for release: v1.0.0 #286

New issue

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

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

Already on GitHub? # to your account

Merged
merged 1 commit into from
Apr 11, 2024
Merged
Changes from all 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
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.0.0rc4
:Version: 1.0.0
:Web: https://pytest-celery.readthedocs.io/en/latest/
:Download: https://pypi.org/project/pytest-celery/
:Source: https://github.com/celery/pytest-celery/
4 changes: 2 additions & 2 deletions docs/getting-started/introduction.rst
Original file line number Diff line number Diff line change
@@ -244,9 +244,9 @@ Quick Jump
- `To see production examples <https://github.com/celery/celery/tree/main/t/smoke/>`_.
- `To learn more about pytest <https://docs.pytest.org/en/latest/getting-started.html>`_.
- `To learn more about Celery <https://docs.celeryproject.org/en/stable/getting-started/introduction.html>`_.
- :ref:`To create a standalone Celery bug report with pytest-celery <celery-bug-report>`
- :ref:`To create a standalone Celery bug report with pytest-celery <celery-bug-report>`.
- :ref:`To copy a simple project for bootstrapping <examples_myworker>`.
- :ref:`To see an example that uses different celery workers at the same time <examples_hybrid_setup>`
- :ref:`To see an example that uses different celery workers at the same time <examples_hybrid_setup>`.

.. topic:: Jump to ⟶

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -61,7 +61,7 @@ description = "Pytest plugin for Celery"
homepage = "https://github.com/celery/pytest-celery"
license = "BSD"
name = "pytest-celery"
version = "1.0.0rc4"
version = "1.0.0"
readme = "README.rst"
keywords = ["pytest", "celery"]

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


__version__ = "1.0.0rc4"
__version__ = "1.0.0"
__author__ = "Tomer Nosrati"
__contact__ = "tomer.nosrati@gmail.com"
__homepage__ = "https://pytest-celery.readthedocs.io/"