Skip to content

Commit

Permalink
Prepare for release: v1.1.0 (#377)
Browse files Browse the repository at this point in the history
* Fixed doc links for localstack

* Added Changelog for v1.1.0

* Bump version: 1.0.1 → 1.1.0
  • Loading branch information
Nusnus authored Aug 11, 2024
1 parent e11ae40 commit 08c9d6e
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 5 deletions.
45 changes: 45 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,51 @@
Change history
================

.. _version-1.1.0:

1.1.0
=====
:release-date: 11 August, 2024
:release-by: Tomer Nosrati

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

Key Highlights
--------------

- New SQS broker using :ref:`Localstack <built-in-localstack-broker>` (Disabled by default).
- New ``sqs`` extra for the SQS broker.

Fixes & Changes
---------------

- Fixed package docutils installation with Python 3.8 (#372)
- Added sqs extra (only) (#373)
- Use set instead of list with ALL_CELERY_BROKERS and ALL_CELERY_BACKENDS (#375)
- Added new localstack (SQS) broker (#374)
- Prepare for release: v1.1.0 (#377)

Dependencies Updates
--------------------

- Build(deps): Bump setuptools from 70.3.0 to 71.0.3 (#354)
- Bumping Dependencies (inc. pyproject.toml) (#355)
- Build(deps-dev): Bump pytest from 8.3.1 to 8.3.2 (#357)
- Build(deps): Bump setuptools from 71.1.0 to 72.1.0 (#360)
- Build(deps-dev): Bump types-redis from 4.6.0.20240425 to 4.6.0.20240726 (#356)
- Build(deps): Bump tenacity from 8.5.0 to 9.0.0 (#361)
- Build(deps): Bump redis from 5.0.7 to 5.0.8 (#362)
- Build(deps-dev): Bump mypy from 1.11.0 to 1.11.1 (#363)
- Build(deps): Bump snok/install-poetry from 1.3.4 to 1.4.0 (#364)
- Build(deps-dev): Bump coverage from 7.6.0 to 7.6.1 (#365)
- Build(deps): Bump debugpy from 1.8.2 to 1.8.3 (#366)
- Build(deps-dev): Bump black from 24.4.2 to 24.8.0 (#367)
- Build(deps): Bump snok/install-poetry from 1.4.0 to 1.4.1 (#368)
- Build(deps): Bump debugpy from 1.8.3 to 1.8.5 (#370)
- Build(deps-dev): Bump types-redis from 4.6.0.20240726 to 4.6.0.20240806 (#371)
- Bumping Dependencies (inc. pyproject.toml) (#376)

.. _version-1.0.1:

1.0.1
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.0.1
:Version: 1.1.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: 2 additions & 0 deletions docs/getting-started/first-steps.rst
Original file line number Diff line number Diff line change
Expand Up @@ -683,6 +683,8 @@ Fixtures

A list of available fixtures for the broker can be found in the :mod:`pytest_celery.vendors.redis.broker.fixtures` module.

.. _localstack-broker:

Localstack (SQS) Broker
-----------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/vendors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ The Dockerfile is published with the source code and can be found using
:language: docker
:caption: pytest_celery.vendors.worker.Dockerfile

.. _localstack-broker:
.. _built-in-localstack-broker:

Localstack (SQS) Broker
=======================

To use the Localstack broker, you will need add additional configuration to the test setup.
To use the :ref:`Localstack broker <localstack-broker>`, you will need add additional configuration to the test setup.

You may add this to ``conftest.py`` to configure the Localstack broker.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ description = "Pytest plugin for Celery"
homepage = "https://github.com/celery/pytest-celery"
license = "BSD"
name = "pytest-celery"
version = "1.0.1"
version = "1.1.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.0.1"
__version__ = "1.1.0"
__author__ = "Tomer Nosrati"
__contact__ = "tomer.nosrati@gmail.com"
__homepage__ = "https://pytest-celery.readthedocs.io/"
Expand Down

0 comments on commit 08c9d6e

Please sign in to comment.