Skip to content

Commit 2472904

Browse files
committed
Prepare for version 1.16.
1 parent b2ae6d4 commit 2472904

File tree

9 files changed

+21
-10
lines changed

9 files changed

+21
-10
lines changed

ChangeLog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2019-04-26 Bruno Haible <bruno@clisp.org>
2+
3+
Prepare for version 1.16.
4+
* configure.ac: Bump version number to 1.15.
5+
* include/iconv.h.in (_LIBICONV_VERSION): Likewise.
6+
* lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 8:1:6.
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
2019-04-26 Bruno Haible <bruno@clisp.org>
213

314
Tweak exported symbols when --enable-relocatable is used.

Makefile.devel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ all : srclib/Makefile.gnulib srclib/Makefile.in \
3232

3333
# Before making a new release:
3434
# - check that the encoding lists in README and man/iconv_open.3 are up to date,
35-
# - check that the files in libcharset/lib/ are in sync with the gnulib modules
36-
# 'localcharset' and 'relocatable-lib-lgpl',
35+
# - check that the files in libcharset/lib/ are in sync with the gnulib module
36+
# 'localcharset',
3737
# - increment the version number in
3838
# configure.ac
3939
# include/iconv.h.in

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ The iconv _program_ and the documentation are under GPL, see file COPYING.
139139
Download
140140
--------
141141

142-
https://ftp.gnu.org/gnu/libiconv/libiconv-1.15.tar.gz
142+
https://ftp.gnu.org/gnu/libiconv/libiconv-1.16.tar.gz
143143

144144
Homepage
145145
--------

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.63])
19-
AC_INIT([libiconv], [1.15])
19+
AC_INIT([libiconv], [1.16])
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-2003, 2005-2006, 2008-2011 Free Software Foundation, Inc.
1+
/* Copyright (C) 1999-2019 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 0x010F /* version number: (major<<8) + minor */
23+
#define _LIBICONV_VERSION 0x0110 /* 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

lib/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ SHELL = @SHELL@
5151

5252
# Before making a release, change this according to the libtool documentation,
5353
# section "Library interface versions".
54-
LIBICONV_VERSION_INFO = 8:0:6
54+
LIBICONV_VERSION_INFO = 8:1:6
5555

5656
PACKAGE_VERSION = @VERSION@
5757

src/iconv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ static void print_version (void)
191191
{
192192
printf("iconv (GNU libiconv %d.%d)\n",
193193
_libiconv_version >> 8, _libiconv_version & 0xff);
194-
printf("Copyright (C) %s Free Software Foundation, Inc.\n", "2000-2018");
194+
printf("Copyright (C) %s Free Software Foundation, Inc.\n", "2000-2019");
195195
/* xgettext: no-wrap */
196196
fputs (_("\
197197
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>\n\

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-2017\0"
27+
VALUE "LegalCopyright", "Copyright (C) 1999-2019\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-2017\0"
27+
VALUE "LegalCopyright", "Copyright (C) 1999-2019\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)