From d971045702dcad31b7b9fd082e47031948cbe01a Mon Sep 17 00:00:00 2001 From: Claudio Matsuoka Date: Wed, 12 Jan 2011 00:27:50 -0200 Subject: [PATCH] Update version number and changelog file List current changes to the CHANGES file and call this version 2.3. The version and date must be updated in several places before the final release, including the FAQ and all man pages. Signed-off-by: Claudio Matsuoka --- CHANGES | 34 ++++++++++++++++++++++++++++++++++ Makefile | 2 +- figlet.c | 6 +++--- 3 files changed, 38 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index aead9cf..b0fde97 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,37 @@ +Changes in FIGlet 2.3 (in progress) +--------------------- + +FIGlet 2.3 is a revision of FIGlet 2.2.2 featuring minor bugfixes and +important licensing changes in the zipio files. The full list of +changes is: + +o New JIS X 0201 control file (Micah Cowan) + +o Fix behavior of JIS0201 SHIFT-OUT and SHIFT-IN that were previouly + inverted (Micah Cowan) + +o Fix memory violation when smushing at line start + +o Fix handling of memory allocation errors + +o Relicense Ed Hamrick zipio under the MIT license. This should + eliminate any concerns about redistribution of FIGlet as libre + software. + +o Update Makefile to meet modern standards in variable naming, using + BINDIR as the pathname for binary files and reservind DESTDIR + as the extra prefix commonly used in package building. + +o Add a Turbo C makefile, just because I had the compiler. (this + also tests portability to old compilers and foreign platforms) + +o Add Jonathon Abbott's man pages for figlist, showfigfonts and + chkfont originally contributed to the Debian Project + +o ... + +These changes were made by Claudio Matsuoka + Changes in FIGlet 2.2.2 ----------------------- diff --git a/Makefile b/Makefile index a003a79..98ad278 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,7 @@ DEFAULTFONTFILE = standard.flf ## END OF CONFIGURATION SECTION ## -VERSION = 2.3.0 +VERSION = 2.3 DIST = figlet-$(VERSION) OBJS = figlet.o zipio.o crc.o inflate.o BINS = figlet chkfont diff --git a/figlet.c b/figlet.c index 1f34161..9574e04 100644 --- a/figlet.c +++ b/figlet.c @@ -10,9 +10,9 @@ (as listed in the file "LICENSE" which is included in this package) ****************************************************************************/ -#define DATE "05 July 2005" -#define VERSION "2.2.2" -#define VERSION_INT 20202 +#define DATE "XX January 2011" +#define VERSION "2.3" +#define VERSION_INT 20300 /* FIGlet (Frank, Ian & Glenn's Letters) */ /* by Glenn Chappell */