From 1216f66cd1d11e52be441d4326673d8bf7869b04 Mon Sep 17 00:00:00 2001 From: Sai Medhini Reddy Maryada <117196660+saimedhi@users.noreply.github.com> Date: Mon, 21 Aug 2023 12:08:20 -0700 Subject: [PATCH] Bump version to 2.3.1 on branch 2.3 (#479) Signed-off-by: saimedhi --- .github/workflows/unified-release.yml | 2 +- CHANGELOG.md | 11 ++++++++++- COMPATIBILITY.md | 1 + opensearchpy/_version.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unified-release.yml b/.github/workflows/unified-release.yml index 0d75639e..1551cfe2 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.3.0'] + stack_version: ['2.3.1'] steps: - name: Checkout diff --git a/CHANGELOG.md b/CHANGELOG.md index d5e6f6ce..b3dd35e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### Deprecated ### Removed ### Fixed +### Security + +## [2.3.1] +### Added +### Changed +### Deprecated +### Removed +### Fixed - Fixed race condition in AWSV4SignerAuth & AWSV4SignerAsyncAuth when using refreshable credentials ([#470](https://github.com/opensearch-project/opensearch-py/pull/470)) ### Security @@ -107,9 +115,10 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - Fixed DeprecationWarning emitted from urllib3 1.26.13+ ([#246](https://github.com/opensearch-project/opensearch-py/pull/246)) ### Security -[Unreleased]: https://github.com/opensearch-project/opensearch-py/compare/v2.2.0...HEAD +[Unreleased]: https://github.com/opensearch-project/opensearch-py/compare/v2.3.1...HEAD [2.0.1]: https://github.com/opensearch-project/opensearch-py/compare/v2.0.0...v2.0.1 [2.1.0]: https://github.com/opensearch-project/opensearch-py/compare/v2.0.1...v2.1.0 [2.1.1]: https://github.com/opensearch-project/opensearch-py/compare/v2.1.0...v2.1.1 [2.2.0]: https://github.com/opensearch-project/opensearch-py/compare/v2.1.1...v2.2.0 [2.3.0]: https://github.com/opensearch-project/opensearch-py/compare/v2.2.0...v2.3.0 +[2.3.1]: https://github.com/opensearch-project/opensearch-py/compare/v2.3.0...v2.3.1 diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index bc39275a..a72261b3 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -13,6 +13,7 @@ The below matrix shows the compatibility of the [`opensearch-py`](https://pypi.o | 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 | +| 2.3.1 | 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 a21ba4b7..3985132a 100644 --- a/opensearchpy/_version.py +++ b/opensearchpy/_version.py @@ -24,4 +24,4 @@ # specific language governing permissions and limitations # under the License. -__versionstr__ = "2.3.0" +__versionstr__ = "2.3.1"