Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Major changes to the IOCCC entry toolkit


## Release 2.11.1 2025-12-20

Typo fix in `txzchk`.

Changed `MIN_TXZCHK_VERSION` to `"2.1.0 2025-11-18"`.
Updated `TXZCHK_VERSION` to `"2.1.1 2025-12-20"`.


## Release 2.11.0 2025-11-30

Update `IOCCC_REGISTER_URL` to "https://www.freelists.org/list/ioccc29-reg".
Expand Down
6 changes: 3 additions & 3 deletions soup/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
*
* NOTE: This should match the latest Release string in CHANGES.md
*/
#define MKIOCCCENTRY_REPO_VERSION "2.11.0 2015-11-30" /* special release format: major.minor[.patch] YYYY-MM-DD */
#define MKIOCCCENTRY_REPO_VERSION "2.11.1 2015-12-20" /* special release format: major.minor[.patch] YYYY-MM-DD */

/*
* official soup version (aka recipe :-) )
Expand Down Expand Up @@ -131,8 +131,8 @@
/*
* official txzchk version
*/
#define TXZCHK_VERSION "2.1.0 2025-11-18" /* format: major.minor[.patch] YYYY-MM-DD */
#define MIN_TXZCHK_VERSION TXZCHK_VERSION
#define TXZCHK_VERSION "2.1.1 2025-12-20" /* format: major.minor[.patch] YYYY-MM-DD */
#define MIN_TXZCHK_VERSION "2.1.0 2025-11-18"

/*
* official chkentry version
Expand Down
2 changes: 1 addition & 1 deletion txzchk.c
Original file line number Diff line number Diff line change
Expand Up @@ -1601,7 +1601,7 @@ check_tarball(char const *tar, char const *fnamchk)
errno = 0; /* pre-clear errno for warnp() */
ret = setvbuf(input_stream, (char *)NULL, _IOLBF, 0);
if (ret != 0)
warnp(TXZCHK_BASENAME, "is %s: setvbuf failed for %s", __func__, tarball_path);
warnp(TXZCHK_BASENAME, "in %s: setvbuf failed for %s", __func__, tarball_path);

} else {
/*
Expand Down