Skip to content

Commit

Permalink
chore: Bump version to v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
qcoumes committed Apr 13, 2024
1 parent b063229 commit df93927
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion django_opensearch_dsl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .documents import Document # noqa
from .fields import * # noqa

__version__ = "0.6.0"
__version__ = "0.6.1"


def autodiscover():
Expand Down
2 changes: 2 additions & 0 deletions docs/AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

---

Expand Down
10 changes: 9 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit df93927

Please sign in to comment.