diff --git a/CHANGELOG.md b/CHANGELOG.md index b17c2207..c29968b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ ## [Unreleased] +## [5.15.0] - 2024-10-16 + +### Changed + +- Improved speed of value generation which could have been a bottleneck when + large values are used. (#301) + +### Added + +- Add support for connecting to redis over unix socket. (#300) + +### Fixed + +- Fixed bugs in client initialization which prevented OLTP workload from + functioning. (#301) + + ## [5.14.1] - 2024-10-11 ### Fixed @@ -221,8 +238,9 @@ - Support Momento topics. - Basic HTTP/1.1 and HTTP/2.0 load generation. -[unreleased]: https://github.com/iopsystems/rpc-perf/compare/v5.14.1...HEAD -[5.14.0]: https://github.com/iopsystems/rezolus/compare/v5.14.0...v5.14.1 +[unreleased]: https://github.com/iopsystems/rpc-perf/compare/v5.15.0...HEAD +[5.15.0]: https://github.com/iopsystems/rpc-perf/compare/v5.14.1...v5.15.0 +[5.14.1]: https://github.com/iopsystems/rezolus/compare/v5.14.0...v5.14.1 [5.14.0]: https://github.com/iopsystems/rezolus/compare/v5.13.0...v5.14.0 [5.13.0]: https://github.com/iopsystems/rezolus/compare/v5.12.1...v5.13.0 [5.12.1]: https://github.com/iopsystems/rezolus/compare/v5.12.0...v5.12.1 diff --git a/Cargo.lock b/Cargo.lock index 37666826..85951800 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3115,7 +3115,7 @@ dependencies = [ [[package]] name = "rpc-perf" -version = "5.14.2-alpha.0" +version = "5.15.0" dependencies = [ "ahash", "async-channel", diff --git a/Cargo.toml b/Cargo.toml index 82a2bfce..f55ace4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rpc-perf" description = "RPC Performance Testing" -version = "5.14.2-alpha.0" +version = "5.15.0" authors = ["Brian Martin "] edition = "2021" homepage = "https://github.com/iopsystems/rpc-perf"