From 8d47de1f71d288808ee2d72da7619c19582954c1 Mon Sep 17 00:00:00 2001 From: "Daniel (dB.) Doubrovkine" Date: Wed, 24 Apr 2024 17:00:01 -0400 Subject: [PATCH] Preparing for next developer iteration, 2.3.1. (#190) Signed-off-by: dblock --- CHANGELOG.md | 11 +++++++++++ RELEASING.md | 2 +- src/OpenSearch/Client.php | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b940fb5f..30d21b43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +## [Unreleased] +### Added +### Changed +### Deprecated +### Removed +### Fixed +### Updated APIs +### Security +### Dependencies + ## [2.3.0] ### Added @@ -29,6 +39,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - Fixed basic authentication being overridden by connection params in `ClientBuilder` ([#160](https://github.com/opensearch-project/opensearch-php/pull/160)) - Fixed PHP warning in `Connection::tryDeserializeError()` for some error responses ([#167](https://github.com/opensearch-project/opensearch-php/issues/167)) +[Unreleased]: https://github.com/opensearch-project/opensearch-php/compare/2.3.0...main [2.3.0]: https://github.com/opensearch-project/opensearch-php/compare/2.2.0...2.3.0 [2.2.0]: https://github.com/opensearch-project/opensearch-php/compare/2.1.0...2.2.0 [2.1.0]: https://github.com/opensearch-project/opensearch-php/compare/2.0.3...2.1.0 diff --git a/RELEASING.md b/RELEASING.md index de9e16c4..e93939e6 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -88,4 +88,4 @@ The release process is standard across repositories in this org and is run by a 1. Update CHANGELOG with the version number, and make a pull request (e.g. [#184](https://github.com/opensearch-project/opensearch-php/pull/184)). 2. Push a tag to this repository against the right commit. This triggers the [release.yml](.github/workflows/release.yml) workflow which is responsible to get approval from the maintainers in the form of comments on the GitHub issue, release the client to [packagist](https://packagist.org/packages/opensearch-project/opensearch-php) using a manual webhook, and finally publishing a [release on GitHub](https://github.com/opensearch-project/opensearch-php/releases). -3. Increment the version in [Client.php](https://github.com/opensearch-project/opensearch-php/blob/main/src/OpenSearch/Client.php#L55) for the next developer iteration, add an `[Unreleased]` section to [CHANGELOG](CHANGELOG.md), and make a pull request. +3. Increment the version in [Client.php](https://github.com/opensearch-project/opensearch-php/blob/main/src/OpenSearch/Client.php#L55) for the next developer iteration, add an `[Unreleased]` section to [CHANGELOG](CHANGELOG.md), and make a pull request (e.g. [#190](https://github.com/opensearch-project/opensearch-php/pull/190)). diff --git a/src/OpenSearch/Client.php b/src/OpenSearch/Client.php index 9e721447..6aca6213 100644 --- a/src/OpenSearch/Client.php +++ b/src/OpenSearch/Client.php @@ -52,7 +52,7 @@ class Client /** * @deprecated since version is pulled from InstalledVersions::getVersion('opensearch-project/opensearch-php') */ - public const VERSION = '2.3.0'; + public const VERSION = '2.3.1'; /** * @var Transport