diff --git a/CHANGELOG.md b/CHANGELOG.md index 1391d12d..d48b4e97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,22 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] +### Added + +### Dependencies + +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [2.2.0] + ### Added - Added InfoResponse structure ([#187](https://github.com/opensearch-project/opensearch-rs/pull/187)) - Added documentation on how to make raw json requests ([#196](https://github.com/opensearch-project/opensearch-rs/pull/196)) @@ -19,14 +35,6 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### Changed - Moved @aditjind to Emeritus maintainers ([#170](https://github.com/opensearch-project/opensearch-rs/pull/170)) -### Deprecated - -### Removed - -### Fixed - -### Security - ## [2.1.0] ### Added @@ -56,16 +64,11 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - Updates GitHub workflow to additionally run `cargo make test` ([#120](https://github.com/opensearch-project/opensearch-rs/pull/120)) - Updates GitHub workflows to use caching to speed up builds ([#121](https://github.com/opensearch-project/opensearch-rs/pull/121)) -### Deprecated - -### Removed - ### Fixed - Fixes `cargo make test` failing out of the box ([#117](https://github.com/opensearch-project/opensearch-rs/pull/117)) - Fixes f64 comparison in `yaml_test_runner` to use numeric-based comparison instead of string-based ([#150](https://github.com/opensearch-project/opensearch-rs/pull/150)) - Fixes YAML spec tests by adding u64 (unsigned long) support ([#167](https://github.com/opensearch-project/opensearch-rs/pull/167)) -### Security - -[Unreleased]: https://github.com/opensearch-project/opensearch-rs/compare/v2.1.0...HEAD +[Unreleased]: https://github.com/opensearch-project/opensearch-rs/compare/v2.2.0...HEAD +[2.2.0]: https://github.com/opensearch-project/opensearch-rs/compare/v2.1.0...v2.2.0 [2.1.0]: https://github.com/opensearch-project/opensearch-rs/compare/v2.0.0...v2.1.0 \ No newline at end of file diff --git a/api_generator/Cargo.toml b/api_generator/Cargo.toml index e96a8249..9c715d93 100644 --- a/api_generator/Cargo.toml +++ b/api_generator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "api_generator" -version = "2.1.0" +version = "2.2.0" publish = false description = "Generates source code for opensearch package, from the OpenSearch REST API specs" repository = "https://github.com/opensearch-project/opensearch-rs" diff --git a/opensearch/Cargo.toml b/opensearch/Cargo.toml index cefd5253..63a2fba9 100644 --- a/opensearch/Cargo.toml +++ b/opensearch/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "opensearch" -version = "2.1.0" +version = "2.2.0" edition = "2018" authors = ["Elastic and Contributors", "OpenSearch Contributors"] description = "Official OpenSearch Rust client" diff --git a/yaml_test_runner/Cargo.toml b/yaml_test_runner/Cargo.toml index efbaecd6..4d6d700c 100644 --- a/yaml_test_runner/Cargo.toml +++ b/yaml_test_runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yaml_test_runner" -version = "2.1.0" +version = "2.2.0" publish = false edition = "2018" authors = ["Elastic and Contributors", "OpenSearch Contributors"]