diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | doc/ChangeLog | 2 | ||||
-rw-r--r-- | doc/awkcard.in | 2 | ||||
-rw-r--r-- | doc/gawk.info | 28 | ||||
-rw-r--r-- | doc/gawk.texi | 4 | ||||
-rw-r--r-- | doc/gawkinet.texi | 2 | ||||
-rw-r--r-- | doc/gawktexi.in | 4 | ||||
-rw-r--r-- | main.c | 2 |
8 files changed, 24 insertions, 21 deletions
@@ -1,6 +1,7 @@ 2016-06-10 Arnold D. Robbins <arnold@skeeve.com> * config.guess, config.sub: Get latest from Gnulib master. + * main.c (UPDATE_YEAR): Bump to 2016. 2016-06-09 Arnold D. Robbins <arnold@skeeve.com> diff --git a/doc/ChangeLog b/doc/ChangeLog index 45d165a8..32f4ecb5 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -3,6 +3,8 @@ * gawktexi.in: Fix a typo, and replace hard-coded "section" with @value{SECTION} where appropriate. Thanks to Antonio Giovanni Colombo for the reports. + (UPDATE-MONTH, PATCHLEVEL): Update to current before release. + * awkcard.in: Update version. 2016-05-25 Arnold D. Robbins <arnold@skeeve.com> diff --git a/doc/awkcard.in b/doc/awkcard.in index 05c03502..e64f3944 100644 --- a/doc/awkcard.in +++ b/doc/awkcard.in @@ -1939,7 +1939,7 @@ to use the current domain.\*(CB .ES .nf \*(CDHost: \*(FCftp.gnu.org\*(FR -File: \*(FC/gnu/gawk/gawk-4.1.3.tar.gz\fP +File: \*(FC/gnu/gawk/gawk-4.1.4.tar.gz\fP .in +.2i .fi GNU \*(AK (\*(GK). There may be a later version. diff --git a/doc/gawk.info b/doc/gawk.info index 86c53e30..e2869769 100644 --- a/doc/gawk.info +++ b/doc/gawk.info @@ -5,7 +5,7 @@ Free Software Foundation, Inc. This is Edition 4.1 of 'GAWK: Effective AWK Programming: A User's -Guide for GNU Awk', for the 4.1.3 (or later) version of the GNU +Guide for GNU Awk', for the 4.1.4 (or later) version of the GNU implementation of AWK. Permission is granted to copy, distribute and/or modify this document @@ -42,7 +42,7 @@ Free Software Foundation, Inc. This is Edition 4.1 of 'GAWK: Effective AWK Programming: A User's -Guide for GNU Awk', for the 4.1.3 (or later) version of the GNU +Guide for GNU Awk', for the 4.1.4 (or later) version of the GNU implementation of AWK. Permission is granted to copy, distribute and/or modify this document @@ -27325,7 +27325,7 @@ There are two ways to get GNU software: supported. If you have the 'wget' program, you can use a command like the following: - wget http://ftp.gnu.org/gnu/gawk/gawk-4.1.3.tar.gz + wget http://ftp.gnu.org/gnu/gawk/gawk-4.1.4.tar.gz The GNU software archive is mirrored around the world. The up-to-date list of mirror sites is available from the main FSF website @@ -27347,25 +27347,25 @@ compression programs: 'gzip', 'bzip2', and 'xz'. For simplicity, the rest of these instructions assume you are using the one compressed with the GNU Gzip program ('gzip'). - Once you have the distribution (e.g., 'gawk-4.1.3.tar.gz'), use + Once you have the distribution (e.g., 'gawk-4.1.4.tar.gz'), use 'gzip' to expand the file and then use 'tar' to extract it. You can use the following pipeline to produce the 'gawk' distribution: - gzip -d -c gawk-4.1.3.tar.gz | tar -xvpf - + gzip -d -c gawk-4.1.4.tar.gz | tar -xvpf - On a system with GNU 'tar', you can let 'tar' do the decompression for you: - tar -xvpzf gawk-4.1.3.tar.gz + tar -xvpzf gawk-4.1.4.tar.gz -Extracting the archive creates a directory named 'gawk-4.1.3' in the +Extracting the archive creates a directory named 'gawk-4.1.4' in the current directory. The distribution file name is of the form 'gawk-V.R.P.tar.gz'. The V represents the major version of 'gawk', the R represents the current release of version V, and the P represents a "patch level", meaning that minor bugs have been fixed in the release. The current patch level is -3, but when retrieving distributions, you should get the version with +4, but when retrieving distributions, you should get the version with the highest version, release, and patch level. (Note, however, that patch levels greater than or equal to 70 denote "beta" or nonproduction software; you might not want to retrieve such a version unless you don't @@ -27574,7 +27574,7 @@ Unix-derived systems, GNU/Linux, BSD-based systems, and the Cygwin environment for MS-Windows. After you have extracted the 'gawk' distribution, 'cd' to -'gawk-4.1.3'. As with most GNU software, you configure 'gawk' for your +'gawk-4.1.4'. As with most GNU software, you configure 'gawk' for your system by running the 'configure' program. This program is a Bourne shell script that is generated automatically using GNU Autoconf. (The Autoconf software is described fully starting with *note (Autoconf, @@ -28000,8 +28000,8 @@ environment provides an excellent simulation of GNU/Linux, using Bash, GCC, GNU Make, and other GNU programs. Compilation and installation for Cygwin is the same as for a Unix system: - tar -xvpzf gawk-4.1.3.tar.gz - cd gawk-4.1.3 + tar -xvpzf gawk-4.1.4.tar.gz + cd gawk-4.1.4 ./configure make && make check @@ -28583,9 +28583,9 @@ B.6 Summary * The 'gawk' distribution is available from the GNU Project's main distribution site, 'ftp.gnu.org'. The canonical build recipe is: - wget http://ftp.gnu.org/gnu/gawk/gawk-4.1.3.tar.gz - tar -xvpzf gawk-4.1.3.tar.gz - cd gawk-4.1.3 + wget http://ftp.gnu.org/gnu/gawk/gawk-4.1.4.tar.gz + tar -xvpzf gawk-4.1.4.tar.gz + cd gawk-4.1.4 ./configure && make && make check * 'gawk' may be built on non-POSIX systems as well. The currently diff --git a/doc/gawk.texi b/doc/gawk.texi index ae6d88b4..92cb57dc 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -56,9 +56,9 @@ @c applies to and all the info about who's publishing this edition @c These apply across the board. -@set UPDATE-MONTH December, 2015 +@set UPDATE-MONTH June, 2016 @set VERSION 4.1 -@set PATCHLEVEL 3 +@set PATCHLEVEL 4 @set GAWKINETTITLE TCP/IP Internetworking with @command{gawk} @ifset FOR_PRINT diff --git a/doc/gawkinet.texi b/doc/gawkinet.texi index 54334623..07b117d0 100644 --- a/doc/gawkinet.texi +++ b/doc/gawkinet.texi @@ -67,7 +67,7 @@ @set TITLE TCP/IP Internetworking with @command{gawk} @set EDITION 1.4 -@set UPDATE-MONTH April, 2016 +@set UPDATE-MONTH June, 2016 @c gawk versions: @set VERSION 4.1 @set PATCHLEVEL 4 diff --git a/doc/gawktexi.in b/doc/gawktexi.in index d8976b05..d06fa4b9 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -51,9 +51,9 @@ @c applies to and all the info about who's publishing this edition @c These apply across the board. -@set UPDATE-MONTH December, 2015 +@set UPDATE-MONTH June, 2016 @set VERSION 4.1 -@set PATCHLEVEL 3 +@set PATCHLEVEL 4 @set GAWKINETTITLE TCP/IP Internetworking with @command{gawk} @ifset FOR_PRINT @@ -24,7 +24,7 @@ */ /* FIX THIS BEFORE EVERY RELEASE: */ -#define UPDATE_YEAR 2015 +#define UPDATE_YEAR 2016 #include "awk.h" #include "getopt.h" |