From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id E162FA0471 for ; Fri, 21 Jun 2019 16:40:32 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E205E1D554; Fri, 21 Jun 2019 16:40:31 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 860B51D51A for ; Fri, 21 Jun 2019 16:40:30 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 73F212F8BF1; Fri, 21 Jun 2019 14:40:25 +0000 (UTC) Received: from rh.redhat.com (ovpn-117-77.ams2.redhat.com [10.36.117.77]) by smtp.corp.redhat.com (Postfix) with ESMTP id 46FDB608E4; Fri, 21 Jun 2019 14:40:23 +0000 (UTC) From: Kevin Traynor To: stable@dpdk.org, bluca@debian.org, yskoh@mellanox.com Cc: Kevin Traynor Date: Fri, 21 Jun 2019 15:40:15 +0100 Message-Id: <20190621144015.8749-2-ktraynor@redhat.com> In-Reply-To: <20190621144015.8749-1-ktraynor@redhat.com> References: <20190621144015.8749-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Fri, 21 Jun 2019 14:40:25 +0000 (UTC) Subject: [dpdk-stable] [PATCH 2/2] 5-make-release-commit: Update release notes X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Add a seperate section in the release notes for each LTS/stable minor release. It will include the fixes/validation information along with newly added sections for known issues and skipped patches. Signed-off-by: Kevin Traynor --- 5-make-release-commit | 22 +++++++++++++++++----- README | 2 ++ 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/5-make-release-commit b/5-make-release-commit index 84e8a21..522b46b 100755 --- a/5-make-release-commit +++ b/5-make-release-commit @@ -22,9 +22,7 @@ update_release_note() { - if [ $RTE_VER_MINOR -eq 1 ]; then - echo - echo "Fixes and Validation in $RTE_VER_MAJOR Stable Release" - echo "--------------------------------------------" - fi + echo + echo "$stable_release Release Notes" + echo "---------------------" echo @@ -42,4 +40,18 @@ update_release_note() echo "$(cat $stable_release/validation)" + echo + echo "$stable_release Known Issues" + echo "~~~~~~~~~~~~~~~~~~~~" + echo + + echo "$(cat $stable_release/known_issues)" + + echo + echo "Fixes skipped and status unresolved" + echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" + echo + + echo "$(cat $stable_release/failed_list)" + } >> $DPDK_DIR/doc/guides/rel_notes/release_${RTE_VER_MAJOR/./_}.rst } diff --git a/README b/README index ec9c899..5eaefd2 100644 --- a/README +++ b/README @@ -142,4 +142,6 @@ does: - update the release note with the bug fixing commits - update the release note with the validation from the 'validation' file +- update the release note with known issues from the 'known_issues' file +- update the release note with skipped patches from the 'failed_list' file - commit above changes with a short commit log ("release $stable_release") -- 2.20.1