Prepare for version 1.17. * configure.ac: Bump version number to 1.17. * include/iconv.h.in (_LIBICONV_VERSION): Likewise. * lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 9:0:7. * src/iconv.c (print_version): Update copyright year. * windows/iconv.rc: Likewise. * windows/libiconv.rc: Likewise. * README: Update download link.
diff --git a/ChangeLog b/ChangeLog index 4017d6d..fd348c5 100644 --- a/ChangeLog +++ b/ChangeLog
@@ -1,5 +1,16 @@ 2022-02-12 Bruno Haible <bruno@clisp.org> + Prepare for version 1.17. + * configure.ac: Bump version number to 1.17. + * include/iconv.h.in (_LIBICONV_VERSION): Likewise. + * lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 9:0:7. + * src/iconv.c (print_version): Update copyright year. + * windows/iconv.rc: Likewise. + * windows/libiconv.rc: Likewise. + * README: Update download link. + +2022-02-12 Bruno Haible <bruno@clisp.org> + Update source file list (regression 2022-01-23). * lib/Makefile.in (SOURCE_FILES): Add encodings_zos.def, ebcdic*.h. (GENERATED_FILES): Add aliases_zos.h, canonical_zos.h. @@ -233,7 +244,7 @@ 2019-04-26 Bruno Haible <bruno@clisp.org> Prepare for version 1.16. - * configure.ac: Bump version number to 1.15. + * configure.ac: Bump version number to 1.16. * include/iconv.h.in (_LIBICONV_VERSION): Likewise. * lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 8:1:6. * src/iconv.c (print_version): Update copyright year.
diff --git a/README b/README index fea125d..e7375cb 100644 --- a/README +++ b/README
@@ -155,7 +155,7 @@ Download -------- - https://ftp.gnu.org/gnu/libiconv/libiconv-1.16.tar.gz + https://ftp.gnu.org/gnu/libiconv/libiconv-1.17.tar.gz Homepage --------
diff --git a/configure.ac b/configure.ac index 601f193..fec4920 100644 --- a/configure.ac +++ b/configure.ac
@@ -1,4 +1,4 @@ -dnl Copyright (C) 1999-2011, 2016, 2018-2021 Free Software Foundation, Inc. +dnl Copyright (C) 1999-2011, 2016, 2018-2022 Free Software Foundation, Inc. dnl This file is part of the GNU LIBICONV Library. dnl dnl The GNU LIBICONV Library is free software; you can redistribute it @@ -16,7 +16,7 @@ dnl If not, see <https://www.gnu.org/licenses/>. AC_PREREQ([2.64]) -AC_INIT([libiconv], [1.16]) +AC_INIT([libiconv], [1.17]) AC_CONFIG_SRCDIR([lib/iconv.c]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE
diff --git a/include/iconv.h.in b/include/iconv.h.in index af7ba73..62f7b35 100644 --- a/include/iconv.h.in +++ b/include/iconv.h.in
@@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2019 Free Software Foundation, Inc. +/* Copyright (C) 1999-2022 Free Software Foundation, Inc. This file is part of the GNU LIBICONV Library. The GNU LIBICONV Library is free software; you can redistribute it @@ -20,7 +20,7 @@ #ifndef _LIBICONV_H #define _LIBICONV_H -#define _LIBICONV_VERSION 0x0110 /* version number: (major<<8) + minor */ +#define _LIBICONV_VERSION 0x0111 /* version number: (major<<8) + minor */ extern @DLL_VARIABLE@ int _libiconv_version; /* Likewise */ /* We would like to #include any system header file which could define
diff --git a/src/iconv.c b/src/iconv.c index b13585f..e3932e5 100644 --- a/src/iconv.c +++ b/src/iconv.c
@@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2009, 2011-2012, 2016-2019 Free Software Foundation, Inc. +/* Copyright (C) 2000-2022 Free Software Foundation, Inc. This file is part of the GNU LIBICONV Library. This program is free software: you can redistribute it and/or modify @@ -196,7 +196,7 @@ { printf("iconv (GNU libiconv %d.%d)\n", _libiconv_version >> 8, _libiconv_version & 0xff); - printf("Copyright (C) %s Free Software Foundation, Inc.\n", "2000-2019"); + printf("Copyright (C) %s Free Software Foundation, Inc.\n", "2000-2022"); /* xgettext: no-wrap */ /* TRANSLATORS: The %s placeholder is the web address of the GPL license. */ printf (_("\
diff --git a/windows/iconv.rc b/windows/iconv.rc index 3e25ada..46fe4ac 100644 --- a/windows/iconv.rc +++ b/windows/iconv.rc
@@ -24,7 +24,7 @@ VALUE "FileDescription", "GPLed iconv for Windows\0" VALUE "FileVersion", PACKAGE_VERSION_STRING "\0" VALUE "InternalName", "iconv.exe\0" - VALUE "LegalCopyright", "Copyright (C) 1999-2019\0" + VALUE "LegalCopyright", "Copyright (C) 1999-2022\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "iconv.exe\0" VALUE "ProductName", "iconv: character set conversion program\0"
diff --git a/windows/libiconv.rc b/windows/libiconv.rc index 2d50538..e1469f6 100644 --- a/windows/libiconv.rc +++ b/windows/libiconv.rc
@@ -24,7 +24,7 @@ VALUE "FileDescription", "LGPLed libiconv for Windows\0" VALUE "FileVersion", PACKAGE_VERSION_STRING "\0" VALUE "InternalName", "iconv.dll\0" - VALUE "LegalCopyright", "Copyright (C) 1999-2019\0" + VALUE "LegalCopyright", "Copyright (C) 1999-2022\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "iconv.dll\0" VALUE "ProductName", "libiconv: character set conversion library\0"