From f2265701a42fc0a41ad61a3ae1da026ded877abc Mon Sep 17 00:00:00 2001 From: Sai Medhini Reddy Maryada <117196660+saimedhi@users.noreply.github.com> Date: Fri, 22 Mar 2024 15:44:39 -0700 Subject: [PATCH] Bump version to 2.5.0 (#703) * Bump version to 2.5.0 Signed-off-by: saimedhi * Bump version to 2.5.0 Signed-off-by: saimedhi --------- Signed-off-by: saimedhi --- .github/workflows/unified-release.yml | 2 +- CHANGELOG.md | 13 ++++++++++++- COMPATIBILITY.md | 2 +- benchmarks/poetry.lock | 2 +- opensearchpy/_version.py | 2 +- 5 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.github/workflows/unified-release.yml b/.github/workflows/unified-release.yml index 8a812578..c84fba23 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.4.3'] + stack_version: ['2.5.0'] steps: - name: Checkout diff --git a/CHANGELOG.md b/CHANGELOG.md index 2855062d..6f46a76e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] ### Added +### Changed +### Deprecated +### Removed +### Fixed +### Updated APIs +### Security +### Dependencies + +## [2.5.0] +### Added - Added pylint `assignment-from-no-return` and `unused-variable` (([#658](https://github.com/opensearch-project/opensearch-py/pull/658)) - Added pylint `unnecessary-dunder-calls` (([#655](https://github.com/opensearch-project/opensearch-py/pull/655)) - Changed to use .pylintrc files in root and any directory with override requirements (([#654](https://github.com/opensearch-project/opensearch-py/pull/654)) @@ -215,7 +225,8 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - Fixed Wrong return type hint in `async_scan` ([520](https://github.com/opensearch-project/opensearch-py/pull/520)) ### Security -[Unreleased]: https://github.com/opensearch-project/opensearch-py/compare/v2.4.2...HEAD +[Unreleased]: https://github.com/opensearch-project/opensearch-py/compare/v2.5.0...HEAD +[2.5.0]: https://github.com/opensearch-project/opensearch-py/compare/v2.4.2...v2.5.0 [2.4.2]: https://github.com/opensearch-project/opensearch-py/compare/v2.4.0...v2.4.2 [2.4.1]: https://github.com/opensearch-project/opensearch-py/compare/v2.4.0...v2.4.1 [2.4.0]: https://github.com/opensearch-project/opensearch-py/compare/v2.3.2...v2.4.0 diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index 39dba02b..7f986025 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -9,7 +9,7 @@ The below matrix shows the compatibility of the [`opensearch-py`](https://pypi.o | --- | --- | --- | | 1.0.0 | 1.0.0-1.2.4 | | | 1.1.0 | 1.3.0-1.3.7 | | -| 2.x.x | 1.0.0-2.11.0 | client works against OpenSearch 1.x as long as features removed in 2.0 are not used | +| 2.x.x | 1.0.0-2.11.1 | client works against OpenSearch 1.x as long as features removed in 2.0 are not used | ## Upgrading diff --git a/benchmarks/poetry.lock b/benchmarks/poetry.lock index d4c2e4a8..89bf7dbe 100644 --- a/benchmarks/poetry.lock +++ b/benchmarks/poetry.lock @@ -515,7 +515,7 @@ files = [ [[package]] name = "opensearch-py" -version = "2.4.3" +version = "2.5.0" description = "Python client for OpenSearch" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4" diff --git a/opensearchpy/_version.py b/opensearchpy/_version.py index b9ad64ce..0d011cb0 100644 --- a/opensearchpy/_version.py +++ b/opensearchpy/_version.py @@ -24,4 +24,4 @@ # specific language governing permissions and limitations # under the License. -__versionstr__: str = "2.4.3" +__versionstr__: str = "2.5.0"