From f5dab6af2e40cba83ffac8083e5fec9f460e4a44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 23 Feb 2021 17:21:47 +0100 Subject: [PATCH 1/2] release: We're not compatible with Docker. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We don't support Docker as part of 2.x repository. Fixes: #1449 Signed-off-by: Fabiano FidĂȘncio --- tools/packaging/release/runtime-release-notes.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/packaging/release/runtime-release-notes.sh b/tools/packaging/release/runtime-release-notes.sh index 1df2d7acee..cc1c0cdc66 100755 --- a/tools/packaging/release/runtime-release-notes.sh +++ b/tools/packaging/release/runtime-release-notes.sh @@ -98,9 +98,6 @@ EOT cat < Date: Tue, 23 Feb 2021 17:23:55 +0100 Subject: [PATCH 2/2] release: Rename runtime-release-notes to release-notes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There's no runtime repo anymore, let's avoid making a reference to it, which may end up confusing people reading the Release-Process file. Signed-off-by: Fabiano FidĂȘncio --- docs/Release-Process.md | 4 ++-- .../release/{runtime-release-notes.sh => release-notes.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename tools/packaging/release/{runtime-release-notes.sh => release-notes.sh} (100%) diff --git a/docs/Release-Process.md b/docs/Release-Process.md index 86085c2519..7be9333900 100644 --- a/docs/Release-Process.md +++ b/docs/Release-Process.md @@ -79,9 +79,9 @@ ``` $ cd ${GOPATH}/src/github.com/kata-containers/kata-containers/tools/packaging/release # Note: OLD_VERSION is where the script should start to get changes. - $ ./runtime-release-notes.sh ${OLD_VERSION} ${NEW_VERSION} > notes.md + $ ./release-notes.sh ${OLD_VERSION} ${NEW_VERSION} > notes.md # Edit the `notes.md` file to review and make any changes to the release notes. - # Add the release notes in GitHub runtime. + # Add the release notes in the project's GitHub. $ hub release edit -F notes.md "${NEW_VERSION}" ``` diff --git a/tools/packaging/release/runtime-release-notes.sh b/tools/packaging/release/release-notes.sh similarity index 100% rename from tools/packaging/release/runtime-release-notes.sh rename to tools/packaging/release/release-notes.sh