From df93927c50a878a73c096298bfea6680c75f8c36 Mon Sep 17 00:00:00 2001 From: Quentin Coumes Date: Sat, 13 Apr 2024 23:12:11 +0200 Subject: [PATCH] chore: Bump version to v0.6.1 --- django_opensearch_dsl/__init__.py | 2 +- docs/AUTHORS.md | 2 ++ docs/CHANGELOG.md | 10 +++++++++- setup.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/django_opensearch_dsl/__init__.py b/django_opensearch_dsl/__init__.py index caa8652..7abb8fb 100644 --- a/django_opensearch_dsl/__init__.py +++ b/django_opensearch_dsl/__init__.py @@ -3,7 +3,7 @@ from .documents import Document # noqa from .fields import * # noqa -__version__ = "0.6.0" +__version__ = "0.6.1" def autodiscover(): diff --git a/docs/AUTHORS.md b/docs/AUTHORS.md index f9a2ec6..865b3ea 100644 --- a/docs/AUTHORS.md +++ b/docs/AUTHORS.md @@ -11,6 +11,8 @@ * [Jacob Kausler](https://github.com/jakekausler) * [ghkdxofla - Taelim Hwang (Limy)](https://github.com/ghkdxofla) * [Cédric Raud](https://github.com/cedricraud) +* [Jordan Hyatt](https://github.com/JordanHyatt) +* [jlariza](https://github.com/jlariza) --- diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index a8fafcf..de5e40a 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog -### 0.6.0 (2024-03-22) +### 0.6.1 (2024-04-13) + +* Multiple fixes to `CelerySignalProcessor` ([#62](https://github.com/Codoc-os/django-opensearch-dsl/pull/63)), + Contributed by [Jordan Hyatt](https://github.com/JordanHyatt) and [jlariza](https://github.com/jlariza). + * Correctly use `.delay` when calling tasks. + * Only initiate tasks when needed by checking beforehand if an instance is connected to a Document (directly or related) + * The tasks will only be created on transaction commit. + +## 0.6.0 (2024-03-22) * Add `mananage.py opensearch index update` subcommand to update an existing index mappings ([#52](https://github.com/Codoc-os/django-opensearch-dsl/pull/52)). * Add `CelerySignalProcessor` as an alternative to `RealTimeSignalProcessor` to process signals asynchronously using Celery diff --git a/setup.py b/setup.py index 532459b..30b4a38 100755 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup( name='django-opensearch-dsl', - version='0.6.0', + version='0.6.1', description="""Wrapper around opensearch-py for django models""", long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',