From 664d3f2ec4b80dc051a5ec87492ecd3f83e4c5d4 Mon Sep 17 00:00:00 2001 From: Stefan Marr Date: Tue, 21 Feb 2023 08:23:33 +0000 Subject: [PATCH 1/2] Fix date, typos, and missing contributor in CHANGELOG Signed-off-by: Stefan Marr --- CHANGELOG.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3d8dbcb..96e62638 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ - -## [1.1.0] Denoise - 2020-09-17 +## [1.1.0] Denoise - 2023-02-21 This release focuses on reducing the noise from the system (#143, #144). For this purpose, it introduces the `rebench-denoise` tool, which will adapt @@ -22,7 +22,7 @@ The use of `rebench-denoise` will require root rights. Other new features include: - - add support for configurating environment variables (#174) + - add support for configuring environment variables (#174) - add support for recording profiling information (#190) - add support for printing the execution plan without running it (#171) - add marker in configuration to make setting important, which overrides @@ -30,7 +30,7 @@ Other new features include: configuration values (#170) - add support for filtering experiments by machines (#161) -Thanks to @tobega, @qinsoon, @OctaveLarose, and @raehik for their contributions. +Thanks to @tobega, @qinsoon, @cmccandless, @OctaveLarose, and @raehik for their contributions. Other notable improvements: @@ -44,6 +44,8 @@ Other notable improvements: - improve documentation (#197, #198) - use PyTest for unit tests (#192) +**Full Changelog**: https://github.com/smarr/ReBench/compare/v1.0.1...v1.1.0 + ## [1.0.1] - 2020-06-23 From 866130f1ff8d1b89fd2ec3c2844f5216c16040b9 Mon Sep 17 00:00:00 2001 From: Stefan Marr Date: Tue, 21 Feb 2023 08:25:19 +0000 Subject: [PATCH 2/2] Update GitHub Actions version in publish workflow Signed-off-by: Stefan Marr --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0dbaed94..aaa219a4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,9 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: '3.x' - name: Install Dependencies