From 63be7b695a5b81a3214978800b5d1f9f8a0d364b Mon Sep 17 00:00:00 2001 From: Brian Martin Date: Tue, 23 Apr 2024 10:18:04 -0700 Subject: [PATCH] prepare for release 3.7.0 Update changelog and prepare for release 3.7.0 --- CHANGELOG.md | 21 +++++++++++++++++++-- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46f7dff..3c9a98f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ ## [Unreleased] +## [5.7.0] - 2024-04-23 + +### Changed + +- OpenSSL is now the default SSL/TLS provider. BoringSSL is still available + through the use of feature flags. (#194) + +### Added + +- Support for configuring the interval for file exposition allowing for finer + resolution artifacts. (#192) +- Approximate compression ratio for message and value payloads. (#191) +- Support the `list_remove` command for Momento. (#198) +- New metrics for dropped requests. (#201) + ## [5.6.0] - 2024-04-03 ### Changed @@ -101,8 +116,10 @@ - Support Momento topics. - Basic HTTP/1.1 and HTTP/2.0 load generation. -[unreleased]: https://github.com/iopsystems/rpc-perf/compare/v5.5.0...HEAD -[5.4.0]: https://github.com/iopsystems/rezolus/compare/v5.4.0...v5.5.0 +[unreleased]: https://github.com/iopsystems/rpc-perf/compare/v5.7.0...HEAD +[5.7.0]: https://github.com/iopsystems/rezolus/compare/v5.6.0...v5.7.0 +[5.6.0]: https://github.com/iopsystems/rezolus/compare/v5.5.0...v5.6.0 +[5.5.0]: https://github.com/iopsystems/rezolus/compare/v5.4.0...v5.5.0 [5.4.0]: https://github.com/iopsystems/rezolus/compare/v5.3.0...v5.4.0 [5.3.0]: https://github.com/iopsystems/rezolus/compare/v5.2.0...v5.3.0 [5.2.0]: https://github.com/iopsystems/rezolus/compare/v5.1.0...v5.2.0 diff --git a/Cargo.lock b/Cargo.lock index 875aeb9..e7c9167 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2552,7 +2552,7 @@ dependencies = [ [[package]] name = "rpc-perf" -version = "5.6.1-alpha.0" +version = "5.7.0" dependencies = [ "ahash", "async-channel", diff --git a/Cargo.toml b/Cargo.toml index 2b04b91..ddb11ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rpc-perf" description = "RPC Performance Testing" -version = "5.6.1-alpha.0" +version = "5.7.0" authors = ["Brian Martin "] edition = "2021" homepage = "https://github.com/iopsystems/rpc-perf"