From aeb499d823d1af9e7d8a77a85b6cfe6aee1d6655 Mon Sep 17 00:00:00 2001 From: Friedrich Gonzalez <1517449+friedrichg@users.noreply.github.com> Date: Tue, 14 May 2024 00:57:20 -0700 Subject: [PATCH] Prepare release v0.17.0 (#47) Signed-off-by: Friedrich Gonzalez --- CHANGELOG.md | 3 +++ changelogs/v0.17.0.md | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 changelogs/v0.17.0.md diff --git a/CHANGELOG.md b/CHANGELOG.md index e986df470..ad0ebea9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ Order should be `CHANGE`, `FEATURE`, `ENHANCEMENT`, and `BUGFIX` +## v0.17.0 +* [CHANGE] Upgrade cortex to v1.17.0 + ## v0.16.1 * [CHANGE] Upgrade cortex to v1.16.1 diff --git a/changelogs/v0.17.0.md b/changelogs/v0.17.0.md new file mode 100644 index 000000000..a9b4d7cee --- /dev/null +++ b/changelogs/v0.17.0.md @@ -0,0 +1,33 @@ +# v0.17.0 Release + +## Changes + +* [CHANGE] Upgrade cortex to v1.17.0 + +## Installation + +## cortextool + +```console +# download the binary (adapt os and arch as needed) +$ curl -fSL -o "cortextool" "https://github.com/cortexproject/cortex-tools/releases/download/v0.17.0/cortextool_0.17.0_linux_x86_64" + +# make it executable +$ chmod a+x "cortextool" + +# have fun :) +$ ./cortextool --help +``` + +## benchtool + +```console +# download the binary (adapt os and arch as needed) +$ curl -fSL -o "benchtool" "https://github.com/cortexproject/cortex-tools/releases/download/v0.17.0/benchtool_0.17.0_linux_x86_64" + +# make it executable +$ chmod a+x "benchtool" + +# have fun :) +$ ./benchtool --help +```