diff --git a/.github/workflows/unified-release.yml b/.github/workflows/unified-release.yml index 7ecb6dc3..0d75639e 100644 --- a/.github/workflows/unified-release.yml +++ b/.github/workflows/unified-release.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - stack_version: ['2.2.0'] + stack_version: ['2.3.0'] steps: - name: Checkout diff --git a/CHANGELOG.md b/CHANGELOG.md index c458ce62..5d28fe82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] ### Added +### Changed +### Deprecated +### Removed +### Fixed +### Security + +## [2.3.0] +### Added - Added async support for helpers that are merged from opensearch-dsl-py ([#329](https://github.com/opensearch-project/opensearch-py/pull/329)) - Added search.md to guides ([#356](https://github.com/opensearch-project/opensearch-py/pull/356)) - Added index lifecycle guide ([#362](https://github.com/opensearch-project/opensearch-py/pull/362)) diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index 91020855..bc39275a 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -12,6 +12,7 @@ The below matrix shows the compatibility of the [`opensearch-py`](https://pypi.o | 2.0.x | 1.0.0-2.8.0 | client works against Opensearch Version 1.x as long as features removed in 2.0 are not used | | 2.1.x | 1.0.0-2.8.0 | client works against Opensearch Version 1.x as long as features removed in 2.0 are not used | | 2.2.0 | 1.0.0-2.8.0 | client works against Opensearch Version 1.x as long as features removed in 2.0 are not used | +| 2.3.0 | 1.0.0-2.8.0 | client works against Opensearch Version 1.x as long as features removed in 2.0 are not used | ## Upgrading diff --git a/opensearchpy/_version.py b/opensearchpy/_version.py index 017a188a..a21ba4b7 100644 --- a/opensearchpy/_version.py +++ b/opensearchpy/_version.py @@ -24,4 +24,4 @@ # specific language governing permissions and limitations # under the License. -__versionstr__ = "2.2.0" +__versionstr__ = "2.3.0"