From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Mark H Weaver Newsgroups: gmane.lisp.guile.devel Subject: Re: Distributed verification of release tarballs using Guix? (was Re: Releasing 2.2.5?) Date: Tue, 18 Jun 2019 22:48:19 -0400 Message-ID: <8736k6z3w1.fsf@netris.org> References: <87d0jrp0g3.fsf@gnu.org> <87sgsa2co4.fsf@netris.org> <87a7eh6x8m.fsf@gnu.org> <87v9x5tbsl.fsf@netris.org> <87sgs838kd.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="76270"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) Cc: Andy Wingo , guile-devel To: Ludovic =?utf-8?Q?Court=C3=A8s?= Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Wed Jun 19 04:51:01 2019 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hdQgf-000Jjl-Cs for guile-devel@m.gmane.org; Wed, 19 Jun 2019 04:51:01 +0200 Original-Received: from localhost ([::1]:34810 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hdQgd-0004u5-QK for guile-devel@m.gmane.org; Tue, 18 Jun 2019 22:50:59 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:40458) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hdQga-0004tw-7G for guile-devel@gnu.org; Tue, 18 Jun 2019 22:50:57 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hdQgZ-000205-8X for guile-devel@gnu.org; Tue, 18 Jun 2019 22:50:56 -0400 Original-Received: from world.peace.net ([64.112.178.59]:56444) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hdQgZ-0001rS-5R; Tue, 18 Jun 2019 22:50:55 -0400 Original-Received: from mhw by world.peace.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hdQgL-0007HS-90; Tue, 18 Jun 2019 22:50:41 -0400 In-Reply-To: <87sgs838kd.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Mon, 17 Jun 2019 10:44:18 +0200") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 64.112.178.59 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: "guile-devel" Xref: news.gmane.org gmane.lisp.guile.devel:19980 Archived-At: Hi Ludovic, I've finished my updates to the NEWS file in preparation for the 2.2.5 release. Feel free to reorganize, edit, or expand on the NEWS entries as you think best. I believe that all of the relevant changes are listed, anyway. Note that GUILE-VERSION still needs to be updated. See below for the changes that I believe should be made to it. If it all looks okay to you, feel free to run distcheck and upload the release. Thanks, Mark --8<---------------cut here---------------start------------->8--- diff --git a/GUILE-VERSION b/GUILE-VERSION index 32c124c84..bd2525775 100644 --- a/GUILE-VERSION +++ b/GUILE-VERSION @@ -3,7 +3,7 @@ # Note: `GUILE_VERSION' is defined in `configure.ac' using `git-version-gen'. GUILE_MAJOR_VERSION=2 GUILE_MINOR_VERSION=2 -GUILE_MICRO_VERSION=4 +GUILE_MICRO_VERSION=5 GUILE_EFFECTIVE_VERSION=2.2 @@ -16,7 +16,7 @@ GUILE_EFFECTIVE_VERSION=2.2 # See libtool info pages for more information on how and when to # change these. -LIBGUILE_INTERFACE_CURRENT=4 -LIBGUILE_INTERFACE_REVISION=1 -LIBGUILE_INTERFACE_AGE=3 +LIBGUILE_INTERFACE_CURRENT=5 +LIBGUILE_INTERFACE_REVISION=0 +LIBGUILE_INTERFACE_AGE=4 LIBGUILE_INTERFACE="${LIBGUILE_INTERFACE_CURRENT}:${LIBGUILE_INTERFACE_REVISION}:${LIBGUILE_INTERFACE_AGE}" --8<---------------cut here---------------end--------------->8---