From e98b74ff86fb45090df6a815a16e197aed7923b8 Mon Sep 17 00:00:00 2001 From: Thomas Roeblitz Date: Sun, 26 Nov 2023 12:40:34 +0100 Subject: [PATCH 1/5] initial version of release notes for v0.2.0 --- RELEASE_NOTES | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index d53b5a0d..ce5e3a61 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,6 +1,21 @@ This file contains a description of the major changes to the EESSI build-and-deploy bot. For more detailed information, please see the git log. +v0.2.0 (26 November 2023) +-------------------------- + +This is a minor release of the EESSI build-and-deploy bot. + +Bug fixes: +* none + +Improvements: +* support for running tests inside the same job but after the build step (#222) + * this adds a new setting (`job_test_unknown_fmt`) to the bot's configuration +* ensure the bot can build for both the pilot repository and software.eessi.io (#229) +* support repository-specific buckets (#230) + + v0.1.1 (14 November 2023) -------------------------- From aa08718c72226ee3355649058dd086a7fa96e7ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20R=C3=B6blitz?= Date: Sun, 26 Nov 2023 13:11:15 +0100 Subject: [PATCH 2/5] apply suggestions from code review Co-authored-by: Kenneth Hoste --- RELEASE_NOTES | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index ce5e3a61..5f47d91f 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -11,9 +11,9 @@ Bug fixes: Improvements: * support for running tests inside the same job but after the build step (#222) - * this adds a new setting (`job_test_unknown_fmt`) to the bot's configuration -* ensure the bot can build for both the pilot repository and software.eessi.io (#229) -* support repository-specific buckets (#230) + * this adds a new setting (`job_test_unknown_fmt`) in the bot's configuration file +* ensure the bot can build for both the EESSI pilot repository (`pilot.eessi-hpc.org`) and `software.eessi.io` (#229) +* support specifying repository-specific buckets via `bucket_name` in configuration file (#230) v0.1.1 (14 November 2023) From c700a22c5b3db501b9bb58d18be0b37aa16b8182 Mon Sep 17 00:00:00 2001 From: Thomas Roeblitz Date: Sun, 26 Nov 2023 13:16:49 +0100 Subject: [PATCH 3/5] address review suggestion + list additional PR --- RELEASE_NOTES | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 5f47d91f..68420936 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -7,11 +7,13 @@ v0.2.0 (26 November 2023) This is a minor release of the EESSI build-and-deploy bot. Bug fixes: -* none +* adds information on installing and using the smee client on `aarch64` (#233) Improvements: * support for running tests inside the same job but after the build step (#222) - * this adds a new setting (`job_test_unknown_fmt`) in the bot's configuration file + * runs `bot/test.sh` and `bot/check-test.sh` if these are provided by the pull + request being processed + * adds a new setting (`job_test_unknown_fmt`) in the bot's configuration file * ensure the bot can build for both the EESSI pilot repository (`pilot.eessi-hpc.org`) and `software.eessi.io` (#229) * support specifying repository-specific buckets via `bucket_name` in configuration file (#230) From 7320c1a31d6af51ad8f6923adda91057d58e6702 Mon Sep 17 00:00:00 2001 From: Thomas Roeblitz Date: Sun, 26 Nov 2023 13:50:13 +0100 Subject: [PATCH 4/5] polish release notes --- RELEASE_NOTES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 68420936..11921d18 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -11,8 +11,8 @@ Bug fixes: Improvements: * support for running tests inside the same job but after the build step (#222) - * runs `bot/test.sh` and `bot/check-test.sh` if these are provided by the pull - request being processed + * runs `bot/test.sh` and `bot/check-test.sh` if these are provided in the + GitHub repository * adds a new setting (`job_test_unknown_fmt`) in the bot's configuration file * ensure the bot can build for both the EESSI pilot repository (`pilot.eessi-hpc.org`) and `software.eessi.io` (#229) * support specifying repository-specific buckets via `bucket_name` in configuration file (#230) From 0398048b536df35e7b79bfd959c8a93648c4d47b Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sun, 26 Nov 2023 16:46:03 +0100 Subject: [PATCH 5/5] don't wrap line mentioning `bot/test.sh` and `bot/check-test.sh` --- RELEASE_NOTES | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 11921d18..1707f3a5 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -11,8 +11,7 @@ Bug fixes: Improvements: * support for running tests inside the same job but after the build step (#222) - * runs `bot/test.sh` and `bot/check-test.sh` if these are provided in the - GitHub repository + * runs `bot/test.sh` and `bot/check-test.sh` if these are provided in the GitHub repository * adds a new setting (`job_test_unknown_fmt`) in the bot's configuration file * ensure the bot can build for both the EESSI pilot repository (`pilot.eessi-hpc.org`) and `software.eessi.io` (#229) * support specifying repository-specific buckets via `bucket_name` in configuration file (#230)