Skip to content

Commit c31a146

Browse files
committed
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.
1 parent 429e042 commit c31a146

File tree

7 files changed

+21
-10
lines changed

7 files changed

+21
-10
lines changed

ChangeLog

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2022-02-12 Bruno Haible <bruno@clisp.org>
2+
3+
Prepare for version 1.17.
4+
* configure.ac: Bump version number to 1.17.
5+
* include/iconv.h.in (_LIBICONV_VERSION): Likewise.
6+
* lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 9:0:7.
7+
* src/iconv.c (print_version): Update copyright year.
8+
* windows/iconv.rc: Likewise.
9+
* windows/libiconv.rc: Likewise.
10+
* README: Update download link.
11+
112
2022-02-12 Bruno Haible <bruno@clisp.org>
213

314
Update source file list (regression 2022-01-23).
@@ -233,7 +244,7 @@
233244
2019-04-26 Bruno Haible <bruno@clisp.org>
234245

235246
Prepare for version 1.16.
236-
* configure.ac: Bump version number to 1.15.
247+
* configure.ac: Bump version number to 1.16.
237248
* include/iconv.h.in (_LIBICONV_VERSION): Likewise.
238249
* lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 8:1:6.
239250
* src/iconv.c (print_version): Update copyright year.

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ The iconv _program_ and the documentation are under GPL, see file COPYING.
155155
Download
156156
--------
157157

158-
https://ftp.gnu.org/gnu/libiconv/libiconv-1.16.tar.gz
158+
https://ftp.gnu.org/gnu/libiconv/libiconv-1.17.tar.gz
159159

160160
Homepage
161161
--------

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dnl Copyright (C) 1999-2011, 2016, 2018-2021 Free Software Foundation, Inc.
1+
dnl Copyright (C) 1999-2011, 2016, 2018-2022 Free Software Foundation, Inc.
22
dnl This file is part of the GNU LIBICONV Library.
33
dnl
44
dnl The GNU LIBICONV Library is free software; you can redistribute it
@@ -16,7 +16,7 @@ dnl License along with the GNU LIBICONV Library; see the file COPYING.LIB.
1616
dnl If not, see <https://www.gnu.org/licenses/>.
1717

1818
AC_PREREQ([2.64])
19-
AC_INIT([libiconv], [1.16])
19+
AC_INIT([libiconv], [1.17])
2020
AC_CONFIG_SRCDIR([lib/iconv.c])
2121
AC_CONFIG_AUX_DIR([build-aux])
2222
AM_INIT_AUTOMAKE

include/iconv.h.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 1999-2019 Free Software Foundation, Inc.
1+
/* Copyright (C) 1999-2022 Free Software Foundation, Inc.
22
This file is part of the GNU LIBICONV Library.
33
44
The GNU LIBICONV Library is free software; you can redistribute it
@@ -20,7 +20,7 @@
2020
#ifndef _LIBICONV_H
2121
#define _LIBICONV_H
2222

23-
#define _LIBICONV_VERSION 0x0110 /* version number: (major<<8) + minor */
23+
#define _LIBICONV_VERSION 0x0111 /* version number: (major<<8) + minor */
2424
extern @DLL_VARIABLE@ int _libiconv_version; /* Likewise */
2525

2626
/* We would like to #include any system header file which could define

src/iconv.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2000-2009, 2011-2012, 2016-2019 Free Software Foundation, Inc.
1+
/* Copyright (C) 2000-2022 Free Software Foundation, Inc.
22
This file is part of the GNU LIBICONV Library.
33
44
This program is free software: you can redistribute it and/or modify
@@ -196,7 +196,7 @@ static void print_version (void)
196196
{
197197
printf("iconv (GNU libiconv %d.%d)\n",
198198
_libiconv_version >> 8, _libiconv_version & 0xff);
199-
printf("Copyright (C) %s Free Software Foundation, Inc.\n", "2000-2019");
199+
printf("Copyright (C) %s Free Software Foundation, Inc.\n", "2000-2022");
200200
/* xgettext: no-wrap */
201201
/* TRANSLATORS: The %s placeholder is the web address of the GPL license. */
202202
printf (_("\

windows/iconv.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ BEGIN
2424
VALUE "FileDescription", "GPLed iconv for Windows\0"
2525
VALUE "FileVersion", PACKAGE_VERSION_STRING "\0"
2626
VALUE "InternalName", "iconv.exe\0"
27-
VALUE "LegalCopyright", "Copyright (C) 1999-2019\0"
27+
VALUE "LegalCopyright", "Copyright (C) 1999-2022\0"
2828
VALUE "LegalTrademarks", "\0"
2929
VALUE "OriginalFilename", "iconv.exe\0"
3030
VALUE "ProductName", "iconv: character set conversion program\0"

windows/libiconv.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ BEGIN
2424
VALUE "FileDescription", "LGPLed libiconv for Windows\0"
2525
VALUE "FileVersion", PACKAGE_VERSION_STRING "\0"
2626
VALUE "InternalName", "iconv.dll\0"
27-
VALUE "LegalCopyright", "Copyright (C) 1999-2019\0"
27+
VALUE "LegalCopyright", "Copyright (C) 1999-2022\0"
2828
VALUE "LegalTrademarks", "\0"
2929
VALUE "OriginalFilename", "iconv.dll\0"
3030
VALUE "ProductName", "libiconv: character set conversion library\0"

0 commit comments

Comments
 (0)