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 CE2D3A0471 for ; Fri, 21 Jun 2019 19:16:34 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B7E9F1D518; Fri, 21 Jun 2019 19:16:34 +0200 (CEST) Received: from mail-wm1-f67.google.com (mail-wm1-f67.google.com [209.85.128.67]) by dpdk.org (Postfix) with ESMTP id 654EA1D518 for ; Fri, 21 Jun 2019 19:16:33 +0200 (CEST) Received: by mail-wm1-f67.google.com with SMTP id s3so6999092wms.2 for ; Fri, 21 Jun 2019 10:16:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:message-id:subject:from:to:date:in-reply-to :references:content-transfer-encoding:user-agent:mime-version; bh=j/dJhQnTT4vANkKD4giqJap0jmoG/acPLotwaoHSoGs=; b=cYxrqhdPdkbfXl94b4gW75TEbpu7IfBaB/wGsf5a2WauOX0pXayg1CcF7Gqx+P/eLv NxiK+hPrSJ2+3D9gPOEr6wTIw/Wq0MRNN45Bgls8KP+ZbCEl0DQWG8shdF6XMszeVSWc eY63WTYo3Oky2gz08/B3WVRQcNeI5zimeECTgaqnUuyUfQepuZfiHHzfuAtY20YBBkYO 9g7slDSb53bmZAI7JWvA2VZ9ux0+sy5mvAuco1jskvSEP2nxrXiMiyo79rEP8+1RyUgf AcsGDL4nXiX33KaMd2s7kpthhyFiGu5xh8HuCp9Pbgw7CbLbE4B+DIOwCpJTzA4AcVcg K24g== X-Gm-Message-State: APjAAAX8zgSq1Ndv3gBiA8VXoyT0BjPna8stbqdh7z9LPEujFl3olJn/ bbBN98xdSWz5xaIhti/5CZA= X-Google-Smtp-Source: APXvYqw2IWzMkrR+vD9r+4HMnpuFOB/rag43waoR+Fkux42O1EM4VUxTB70LfnWvQyLhvMcgzVnFIQ== X-Received: by 2002:a1c:ab06:: with SMTP id u6mr4711834wme.125.1561137392971; Fri, 21 Jun 2019 10:16:32 -0700 (PDT) Received: from localhost ([88.98.246.218]) by smtp.gmail.com with ESMTPSA id n10sm2091717wrw.83.2019.06.21.10.16.32 (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Fri, 21 Jun 2019 10:16:32 -0700 (PDT) Message-ID: From: Luca Boccassi To: Kevin Traynor , stable@dpdk.org, yskoh@mellanox.com Date: Fri, 21 Jun 2019 18:16:31 +0100 In-Reply-To: <20190621144015.8749-2-ktraynor@redhat.com> References: <20190621144015.8749-1-ktraynor@redhat.com> <20190621144015.8749-2-ktraynor@redhat.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.30.5-1.1 MIME-Version: 1.0 Subject: Re: [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" On Fri, 2019-06-21 at 15:40 +0100, Kevin Traynor wrote: > 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. >=20 > Signed-off-by: Kevin Traynor < > ktraynor@redhat.com > > > --- > 5-make-release-commit | 22 +++++++++++++++++----- > README | 2 ++ > 2 files changed, 19 insertions(+), 5 deletions(-) >=20 > 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() > { > =20 > - 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 "---------------------" > =20 > echo > @@ -42,4 +40,18 @@ update_release_note() > echo "$(cat $stable_release/validation)" > =20 > + 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") Acked-by: Luca Boccassi --=20 Kind regards, Luca Boccassi