From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Pirotte Newsgroups: gmane.lisp.guile.devel Subject: guile-lib - devel branch - patch 8 of 11 Date: Fri, 15 Jul 2016 22:49:57 -0300 Message-ID: <20160715224957.1a7f4a6c@capac> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/0Wil/2Oli6D676zRjXJw7Se"; protocol="application/pgp-signature" X-Trace: ger.gmane.org 1468633844 7853 80.91.229.3 (16 Jul 2016 01:50:44 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 16 Jul 2016 01:50:44 +0000 (UTC) To: guile-devel Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sat Jul 16 03:50:27 2016 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1bOEkM-0005tF-R9 for guile-devel@m.gmane.org; Sat, 16 Jul 2016 03:50:26 +0200 Original-Received: from localhost ([::1]:35607 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bOEkM-0007dE-5l for guile-devel@m.gmane.org; Fri, 15 Jul 2016 21:50:26 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:43804) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bOEk5-0007a4-WD for guile-devel@gnu.org; Fri, 15 Jul 2016 21:50:10 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bOEk1-0003Yk-SZ for guile-devel@gnu.org; Fri, 15 Jul 2016 21:50:09 -0400 Original-Received: from maximusconfessor.all2all.org ([79.99.200.102]:34296) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bOEk1-0003YY-MP for guile-devel@gnu.org; Fri, 15 Jul 2016 21:50:05 -0400 Original-Received: from localhost (unknown [192.168.0.2]) by maximusconfessor.all2all.org (Postfix) with ESMTP id 3E7CBA04C143 for ; Sat, 16 Jul 2016 03:50:05 +0200 (CEST) Original-Received: from maximusconfessor.all2all.org ([192.168.0.1]) by localhost (maximusconfessor.all2all.org [192.168.0.2]) (amavisd-new, port 10024) with ESMTP id hNvvgVQaWKfh for ; Sat, 16 Jul 2016 03:50:00 +0200 (CEST) Original-Received: from capac (unknown [177.17.12.124]) by maximusconfessor.all2all.org (Postfix) with ESMTPSA id C4010A04C141 for ; Sat, 16 Jul 2016 03:49:59 +0200 (CEST) X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.30; x86_64-pc-linux-gnu) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 79.99.200.102 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.21 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:18517 Archived-At: --Sig_/0Wil/2Oli6D676zRjXJw7Se Content-Type: multipart/mixed; boundary="MP_/8L2hm5SgXTHgNLqUJ45UrcX" --MP_/8L2hm5SgXTHgNLqUJ45UrcX Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Content-Disposition: inline guile-lib - devel branch - patch 8 of 11 --MP_/8L2hm5SgXTHgNLqUJ45UrcX Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0008-Bumping-doc-version-and-copyright-numbers.patch =46rom 17948f8fd4d1fd7b5630e673e9d8c0ab66a19119 Mon Sep 17 00:00:00 2001 From: David Pirotte Date: Tue, 12 Jul 2016 21:52:33 -0300 Subject: [PATCH 08/11] Bumping doc version and copyright numbers * doc/guile-library.scm: Bumping doc version and copyright numbers. --- doc/guile-library.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/guile-library.scm b/doc/guile-library.scm index 526320f..20903e4 100644 --- a/doc/guile-library.scm +++ b/doc/guile-library.scm @@ -1,15 +1,15 @@ ;; About the package (define *name* "Guile Library") (define *description* "Common modules for Guile Scheme") -(define *version* "0.2.2") -(define *updated* "31 January 2013") +(define *version* "0.2.3-dev") +(define *updated* "11 July 2016") (define *authors* '(("Andy Wingo" . "wingo at pobox.com") ("Richard Todd" . "richardt at vzavenue.net"))) =20 ;; Copying the documentation (define *copyright-holder* "Andy Wingo, Richard Todd") -(define *years* '(2003 2004 2005 2006 2007 2010 2011)) +(define *years* '(2003 2004 2005 2006 2007 2010 2011 2016)) (define *permissions* "Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free --=20 2.8.1 --MP_/8L2hm5SgXTHgNLqUJ45UrcX-- --Sig_/0Wil/2Oli6D676zRjXJw7Se Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJXiZLFAAoJEPN0/ZOjBXrXW2IH/2W+HiuL55S8Oo2URI0KX5dk itc6wGRXDYTG/K9He0exbDOvNl59LV6rDCDcMLEdfU5xR78gdkDobjr9X4t2k18D j2A6NFyqB6NeBqPhIWe3sfK+PWGDnVawFMsxz6s/xrhiNPhtkVdKdtWP0eTe69+O Mj+p7fOoXFDtRWyOgiizMuqUSWCBF5iaEqWreT8+OtHRAI+WdgIiWA49N6nbBwHV jl4XgF5A1FloxvfHY4XtaW7fNlPkM6L9PpElc0442q5Dxnzy5z9MQA6ShQj1k1yW T5syUNt3nnIw+qxPTIxWF8jhj/Pnxtb2D/p+Bl4gBY9P4K/sMPRiTBfJ3n5+4WY= =jV5F -----END PGP SIGNATURE----- --Sig_/0Wil/2Oli6D676zRjXJw7Se--