From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id 7F15E3858425 for ; Thu, 3 Nov 2022 15:07:24 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7F15E3858425 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from tarox.wildebeest.org (83-87-18-245.cable.dynamic.v4.ziggo.nl [83.87.18.245]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id E28983061FA3 for ; Thu, 3 Nov 2022 16:07:21 +0100 (CET) Received: by tarox.wildebeest.org (Postfix, from userid 1000) id 54AD34003086; Thu, 3 Nov 2022 16:07:21 +0100 (CET) Message-ID: <08816fb334133e5b918a1d87f73c0d37f1536927.camel@klomp.org> Subject: Re: [PATCH] do-release.sh: Create signed annotated tags From: Mark Wielaard To: dwz@sourceware.org Date: Thu, 03 Nov 2022 16:07:21 +0100 In-Reply-To: <20220713124019.21206-1-mark@klomp.org> References: <20220713124019.21206-1-mark@klomp.org> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Evolution 3.28.5 (3.28.5-10.el7) Mime-Version: 1.0 X-Spam-Status: No, score=-3039.1 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi, On Wed, 2022-07-13 at 14:40 +0200, Mark Wielaard wrote: > --- > README.release-checklist | 2 +- > contrib/release/do-release.sh | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git a/README.release-checklist b/README.release-checklist > index a936919..cb6bbad 100644 > --- a/README.release-checklist > +++ b/README.release-checklist > @@ -7,7 +7,7 @@ > - --major to do a major update: $maj.$min -> $(($maj + 1)).0 > This: > - adds a commit that updates the VERSION file, > - - tags that commit, and > + - creates a signed annotated release tag for that commit, and > - pushes both the commit and the tag to the remote repository. > - Run contrib/release/upload-release.sh. > This creates and uploads two release tarballs. > diff --git a/contrib/release/do-release.sh b/contrib/release/do- > release.sh > index 0fde9a7..1127293 100755 > --- a/contrib/release/do-release.sh > +++ b/contrib/release/do-release.sh > @@ -62,6 +62,6 @@ git commit -m "Bump version to $version" > =20 > git push origin master:master > =20 > -git tag dwz-$version > +git tag -s -m "dwz $version release" dwz-$version > =20 > git push origin dwz-$version Pushed this.