Skip to content

Commit 08c9d6e

Browse files
authored
Prepare for release: v1.1.0 (#377)
* Fixed doc links for localstack * Added Changelog for v1.1.0 * Bump version: 1.0.1 → 1.1.0
1 parent e11ae40 commit 08c9d6e

File tree

6 files changed

+52
-5
lines changed

6 files changed

+52
-5
lines changed

Diff for: Changelog.rst

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

7+
.. _version-1.1.0:
8+
9+
1.1.0
10+
=====
11+
:release-date: 11 August, 2024
12+
:release-by: Tomer Nosrati
13+
14+
What's Changed
15+
==============
16+
17+
Key Highlights
18+
--------------
19+
20+
- New SQS broker using :ref:`Localstack <built-in-localstack-broker>` (Disabled by default).
21+
- New ``sqs`` extra for the SQS broker.
22+
23+
Fixes & Changes
24+
---------------
25+
26+
- Fixed package docutils installation with Python 3.8 (#372)
27+
- Added sqs extra (only) (#373)
28+
- Use set instead of list with ALL_CELERY_BROKERS and ALL_CELERY_BACKENDS (#375)
29+
- Added new localstack (SQS) broker (#374)
30+
- Prepare for release: v1.1.0 (#377)
31+
32+
Dependencies Updates
33+
--------------------
34+
35+
- Build(deps): Bump setuptools from 70.3.0 to 71.0.3 (#354)
36+
- Bumping Dependencies (inc. pyproject.toml) (#355)
37+
- Build(deps-dev): Bump pytest from 8.3.1 to 8.3.2 (#357)
38+
- Build(deps): Bump setuptools from 71.1.0 to 72.1.0 (#360)
39+
- Build(deps-dev): Bump types-redis from 4.6.0.20240425 to 4.6.0.20240726 (#356)
40+
- Build(deps): Bump tenacity from 8.5.0 to 9.0.0 (#361)
41+
- Build(deps): Bump redis from 5.0.7 to 5.0.8 (#362)
42+
- Build(deps-dev): Bump mypy from 1.11.0 to 1.11.1 (#363)
43+
- Build(deps): Bump snok/install-poetry from 1.3.4 to 1.4.0 (#364)
44+
- Build(deps-dev): Bump coverage from 7.6.0 to 7.6.1 (#365)
45+
- Build(deps): Bump debugpy from 1.8.2 to 1.8.3 (#366)
46+
- Build(deps-dev): Bump black from 24.4.2 to 24.8.0 (#367)
47+
- Build(deps): Bump snok/install-poetry from 1.4.0 to 1.4.1 (#368)
48+
- Build(deps): Bump debugpy from 1.8.3 to 1.8.5 (#370)
49+
- Build(deps-dev): Bump types-redis from 4.6.0.20240726 to 4.6.0.20240806 (#371)
50+
- Bumping Dependencies (inc. pyproject.toml) (#376)
51+
752
.. _version-1.0.1:
853

954
1.0.1

Diff for: 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.0.1
4+
:Version: 1.1.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/

Diff for: docs/getting-started/first-steps.rst

+2
Original file line numberDiff line numberDiff line change
@@ -683,6 +683,8 @@ Fixtures
683683

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

686+
.. _localstack-broker:
687+
686688
Localstack (SQS) Broker
687689
-----------------------
688690

Diff for: docs/getting-started/vendors.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ The Dockerfile is published with the source code and can be found using
6868
:language: docker
6969
:caption: pytest_celery.vendors.worker.Dockerfile
7070

71-
.. _localstack-broker:
71+
.. _built-in-localstack-broker:
7272

7373
Localstack (SQS) Broker
7474
=======================
7575

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

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

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ description = "Pytest plugin for Celery"
6161
homepage = "https://github.com/celery/pytest-celery"
6262
license = "BSD"
6363
name = "pytest-celery"
64-
version = "1.0.1"
64+
version = "1.1.0"
6565
readme = "README.rst"
6666
keywords = ["pytest", "celery"]
6767

Diff for: 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.0.1"
6+
__version__ = "1.1.0"
77
__author__ = "Tomer Nosrati"
88
__contact__ = "[email protected]"
99
__homepage__ = "https://pytest-celery.readthedocs.io/"

0 commit comments

Comments
 (0)