From 535330f493009ab5d9549ce6405c5e1bcfc1fd9b Mon Sep 17 00:00:00 2001 From: Grzegorz Banasiak Date: Tue, 7 Nov 2023 14:13:24 +0100 Subject: [PATCH] Bump version to 2.10.0 --- AUTHORS | 1 + CHANGELOG.md | 23 +++++++++++++++++++++++ esrally/_version.py | 2 +- prepare-release.sh | 2 +- 4 files changed, 26 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 4c2cd16ed..a2d8754af 100644 --- a/AUTHORS +++ b/AUTHORS @@ -12,6 +12,7 @@ Daniel Mitterdorfer David Turner Debanjan Choudhury Dennis Lawler +dependabot[bot] Dimitrios Liappis DJRickyB Domenico Andreoli diff --git a/CHANGELOG.md b/CHANGELOG.md index b52ddf5a5..efb208170 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +### 2.10.0 + +#### Highlights + +* [#1797](https://github.com/elastic/rally/pull/1797): Document Rally use with Elastic Serverless + +#### Enhancements + +* [#1791](https://github.com/elastic/rally/pull/1791): Add ESQL operator +* [#1789](https://github.com/elastic/rally/pull/1789): Add serverless-aware runners +* [#1787](https://github.com/elastic/rally/pull/1787) (Breaking): Inject serverless_operator in track templates +* [#1786](https://github.com/elastic/rally/pull/1786): Add support for zstd-compression +* [#1785](https://github.com/elastic/rally/pull/1785): Fix serverless public use in trivial tracks + +#### Bug Fixes + +* [#1790](https://github.com/elastic/rally/pull/1790): Retrieve cluster info in serverless public mode +* [#1784](https://github.com/elastic/rally/pull/1784): Fix crash on too many consecutive errors + +#### Miscellaneous Changes + +* [#1793](https://github.com/elastic/rally/pull/1793): Bump urllib3 from 1.26.9 to 1.26.18 + ### 2.9.1 #### Enhancements diff --git a/esrally/_version.py b/esrally/_version.py index 4b3064df4..1c622223b 100644 --- a/esrally/_version.py +++ b/esrally/_version.py @@ -1 +1 @@ -__version__ = "2.9.1.dev0" +__version__ = "2.10.0" diff --git a/prepare-release.sh b/prepare-release.sh index fbbf810e0..7a71dddf1 100755 --- a/prepare-release.sh +++ b/prepare-release.sh @@ -32,7 +32,7 @@ echo "Preparing ${__NOTICE_OUTPUT_FILE}" source create-notice.sh echo "Updating author information" -git log --format='%aN' | LC_ALL=en_US.UTF-8 sort -u > AUTHORS +git log --format='%aN' | sort -fu > AUTHORS # This will produce a non-zero exit code iff there are changes. # Obviously we should disable exiting on error temporarily. set +e