Prepare for version 1.16.
diff --git a/ChangeLog b/ChangeLog
index e0fedb4..64e34ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
2019-04-26 Bruno Haible <bruno@clisp.org>
+ Prepare for version 1.16.
+ * configure.ac: Bump version number to 1.15.
+ * 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.
+ * windows/iconv.rc: Likewise.
+ * windows/libiconv.rc: Likewise.
+ * README: Update download link.
+
+2019-04-26 Bruno Haible <bruno@clisp.org>
+
Tweak exported symbols when --enable-relocatable is used.
* lib/Makefile.in (DEFS): Map 'relocate2' to a different symbol.
diff --git a/Makefile.devel b/Makefile.devel
index c23cde9..5fb5ea4 100644
--- a/Makefile.devel
+++ b/Makefile.devel
@@ -32,8 +32,8 @@
# Before making a new release:
# - check that the encoding lists in README and man/iconv_open.3 are up to date,
-# - check that the files in libcharset/lib/ are in sync with the gnulib modules
-# 'localcharset' and 'relocatable-lib-lgpl',
+# - check that the files in libcharset/lib/ are in sync with the gnulib module
+# 'localcharset',
# - increment the version number in
# configure.ac
# include/iconv.h.in
diff --git a/README b/README
index f7bb6be..7ed51eb 100644
--- a/README
+++ b/README
@@ -139,7 +139,7 @@
Download
--------
- https://ftp.gnu.org/gnu/libiconv/libiconv-1.15.tar.gz
+ https://ftp.gnu.org/gnu/libiconv/libiconv-1.16.tar.gz
Homepage
--------
diff --git a/configure.ac b/configure.ac
index 891fa50..ae619d4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,7 +16,7 @@
dnl If not, see <https://www.gnu.org/licenses/>.
AC_PREREQ([2.63])
-AC_INIT([libiconv], [1.15])
+AC_INIT([libiconv], [1.16])
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 3e33331..ea39628 100644
--- a/include/iconv.h.in
+++ b/include/iconv.h.in
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999-2003, 2005-2006, 2008-2011 Free Software Foundation, Inc.
+/* Copyright (C) 1999-2019 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 0x010F /* version number: (major<<8) + minor */
+#define _LIBICONV_VERSION 0x0110 /* 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/lib/Makefile.in b/lib/Makefile.in
index 61d0ba2..47a6aec 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -51,7 +51,7 @@
# Before making a release, change this according to the libtool documentation,
# section "Library interface versions".
-LIBICONV_VERSION_INFO = 8:0:6
+LIBICONV_VERSION_INFO = 8:1:6
PACKAGE_VERSION = @VERSION@
diff --git a/src/iconv.c b/src/iconv.c
index ab26859..5b36652 100644
--- a/src/iconv.c
+++ b/src/iconv.c
@@ -191,7 +191,7 @@
{
printf("iconv (GNU libiconv %d.%d)\n",
_libiconv_version >> 8, _libiconv_version & 0xff);
- printf("Copyright (C) %s Free Software Foundation, Inc.\n", "2000-2018");
+ printf("Copyright (C) %s Free Software Foundation, Inc.\n", "2000-2019");
/* xgettext: no-wrap */
fputs (_("\
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>\n\
diff --git a/windows/iconv.rc b/windows/iconv.rc
index 9ca2266..3e25ada 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-2017\0"
+ VALUE "LegalCopyright", "Copyright (C) 1999-2019\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 3e50477..bfab7e7 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-2017\0"
+ VALUE "LegalCopyright", "Copyright (C) 1999-2019\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "iconv.dll\0"
VALUE "ProductName", "libiconv: character set conversion library\0"