From patchwork Thu Feb 19 12:23:19 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joel Brobecker X-Patchwork-Id: 5171 Received: (qmail 1053 invoked by alias); 19 Feb 2015 12:23:25 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 1040 invoked by uid 89); 19 Feb 2015 12:23:24 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL, BAYES_00 autolearn=ham version=3.3.2 X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Thu, 19 Feb 2015 12:23:20 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 13F8C116698 for ; Thu, 19 Feb 2015 07:23:19 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id K7SeskpfU0v2 for ; Thu, 19 Feb 2015 07:23:19 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id A25D5116688 for ; Thu, 19 Feb 2015 07:23:18 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id C440840EAD; Thu, 19 Feb 2015 16:23:19 +0400 (RET) Date: Thu, 19 Feb 2015 16:23:19 +0400 From: Joel Brobecker To: gdb-patches@sourceware.org Subject: Re: [release/branch] Set GDB version number to str 7.9. Message-ID: <20150219122319.GF23529@adacore.com> References: <1424347460-31023-1-git-send-email-brobecker@adacore.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1424347460-31023-1-git-send-email-brobecker@adacore.com> User-Agent: Mutt/1.5.21 (2010-09-15) > In preparation for the GDB 7.9 release, I am about to push > this commit... > > gdb/ChangeLog: > > * version.in: Set GDB version number to str 7.9. [...] > diff --git a/gdb/version.in b/gdb/version.in > index 8c98182..2d982e4 100644 > --- a/gdb/version.in > +++ b/gdb/version.in > @@ -1 +1 @@ > -7.8.90.DATE-cvs > +str 7.9 For those who were actually paying attention (not me), there is an obvious mistake in the version number. For my penance, I'll explain how it happened: I use a set of python scripts to do most of the grunt work. The purpose is to make sure everything gets done without anything falling through the cracks; and by doing most of it automatically, I reduce the changes for errors. The scripts are configured via a small yaml file. Normally, I'd just put write the version number and done, but "7.9" looking like a float, I have to say "!!str 7.9" instead. Except that I forgot the two leading "!!". The scripts show me the diff before pushing, and asks me to confirm. But I was sleeping at the wheel. Fortunately, I caught it slightly later on. Attached is the patch that fixes the issue. gdb/ChangeLog: * version.in: Change to "7.9" instead of "str 7.9". From 3b41352824ddc32dabca2d3281a03b4a0b8c7a27 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Thu, 19 Feb 2015 16:16:34 +0400 Subject: [PATCH] Fix the gdb version number ("7.9" instead of "str 7.9"). This fixes an obvious error in the previous change to this file. gdb/ChangeLog: * version.in: Change to "7.9" instead of "str 7.9". --- gdb/ChangeLog | 4 ++++ gdb/version.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index dd40512..4fc8c2d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2015-02-19 Joel Brobecker + * version.in: Set GDB version number to 7.9. + +2015-02-19 Joel Brobecker + * version.in: Set GDB version number to str 7.9. 2015-02-19 Joel Brobecker diff --git a/gdb/version.in b/gdb/version.in index 2d982e4..fbf1779 100644 --- a/gdb/version.in +++ b/gdb/version.in @@ -1 +1 @@ -str 7.9 +7.9 -- 1.9.1