Skip to content

Commit e6cead9

Browse files
committed
ci: Bump version to 0.7.0
1 parent 6854235 commit e6cead9

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

django_opensearch_dsl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from .documents import Document # noqa
44
from .fields import * # noqa
55

6-
__version__ = "0.6.2"
6+
__version__ = "0.7.0"
77

88

99
def autodiscover():

docs/AUTHORS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
* [Cédric Raud](https://github.com/cedricraud)
1414
* [Jordan Hyatt](https://github.com/JordanHyatt)
1515
* [jlariza](https://github.com/jlariza)
16+
* [Mariusz Felisiak](https://github.com/felixxm)
17+
* [gcarq](https://github.com/gcarq)
1618

1719
---
1820

docs/CHANGELOG.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
# Changelog
22

3-
### 0.7.0 (2025-XX-XX)
4-
5-
* Confirm support for Python 3.13.
6-
* Confirm support for Django 5.1 and 5.2.
7-
* Drop support for Django 3.2.
3+
### 0.7.0 (2025-04-11)
4+
5+
* `--refresh` and `--parallel` options of the CLI now default to the respective value of `OPENSEARCH_DSL_AUTO_REFRESH`
6+
and `OPENSEARCH_DSL_AUTO_PARALLEL`.
7+
* Implement `get_documents()` for `DocumentRegistry` ([#74](https://github.com/Codoc-os/django-opensearch-dsl/pull/74)),
8+
Contributed by [gcarq](https://github.com/gcarq).
9+
* Update supported versions of Python and Django ([#75](https://github.com/Codoc-os/django-opensearch-dsl/pull/75)):
10+
* Confirm support for Python 3.13.
11+
* Confirm support for Django 5.1 and 5.2.
12+
* Drop support for Django 3.2.
13+
Contributed by [Mariusz Felisiak](https://github.com/felixxm)
814

915
### 0.6.2 (2024-04-23)
1016

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
setup(
4040
name='django-opensearch-dsl',
41-
version='0.6.2',
41+
version='0.7.0',
4242
description="""Wrapper around opensearch-py for django models""",
4343
long_description=LONG_DESCRIPTION,
4444
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)