Changes for 4.2.0 release

This commit is contained in:
Bob Friesenhahn 2020-12-19 12:44:58 -06:00
parent 25934c94fc
commit 4862b0d7bc
9 changed files with 1459 additions and 15 deletions

1442
ChangeLog

File diff suppressed because it is too large Load Diff

View File

@ -140,7 +140,7 @@ Notes on releasing.
17. Copy release packages from the build tree to the
ftp.remotesensing.org ftp site.
scp tiff-*.tar.gz tiff-*.zip \
scp tiff-*.tar.gz tiff-*.tar.gz.sig tiff-*.zip tiff-*.zip.sig \
bfriesen@upload.osgeo.org:/osgeo/download/libtiff
18. Announce to list, tiff@lists.maptools.org

View File

@ -1 +1 @@
20191103
20201219

View File

@ -1 +1 @@
4.1.0
4.2.0

View File

@ -25,7 +25,7 @@ dnl OF THIS SOFTWARE.
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.64)
AC_INIT([LibTIFF Software],[4.1.0],[tiff@lists.maptools.org],[tiff])
AC_INIT([LibTIFF Software],[4.2.0],[tiff@lists.maptools.org],[tiff])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR(m4)
AC_LANG(C)
@ -33,14 +33,14 @@ AC_LANG(C)
dnl Compute the canonical host (run-time) system type variable
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE(tar-pax)
AM_INIT_AUTOMAKE(tar-ustar)
dnl Do not rebuild generated files every time
AM_MAINTAINER_MODE
dnl Versioning.
dnl Don't fill the ALPHA_VERSION field, if not applicable.
LIBTIFF_MAJOR_VERSION=4
LIBTIFF_MINOR_VERSION=1
LIBTIFF_MINOR_VERSION=2
LIBTIFF_MICRO_VERSION=0
LIBTIFF_ALPHA_VERSION=
LIBTIFF_VERSION=$LIBTIFF_MAJOR_VERSION.$LIBTIFF_MINOR_VERSION.$LIBTIFF_MICRO_VERSION$LIBTIFF_ALPHA_VERSION
@ -76,9 +76,9 @@ dnl 5. If any interfaces have been added since the last public release, then
dnl increment age.
dnl 6. If any interfaces have been removed since the last public release,
dnl then set age to 0.
LIBTIFF_CURRENT=10
LIBTIFF_CURRENT=11
LIBTIFF_REVISION=0
LIBTIFF_AGE=5
LIBTIFF_AGE=6
LIBTIFF_VERSION_INFO=$LIBTIFF_CURRENT:$LIBTIFF_REVISION:$LIBTIFF_AGE
# This is a special hack for OpenBSD and MirOS systems. The dynamic linker

View File

@ -88,7 +88,8 @@ docfiles = \
v4.0.8.html \
v4.0.9.html \
v4.0.10.html \
v4.1.0.html
v4.1.0.html \
v4.2.0.html
dist_doc_DATA = $(docfiles)

View File

@ -28,7 +28,7 @@
</tr>
<tr>
<th>Latest Stable Release</th>
<td><a href="v4.1.0.html">v4.1.0</a></td>
<td><a href="v4.2.0.html">v4.2.0</a></td>
</tr>
<tr>
<th>Master Download Site</th>

View File

@ -134,9 +134,10 @@ included in the release package and by the Git commit history:
<LI>Cmake configuration fixes for big-endian targets.</LI>
<LI>Added support for optional building against libdeflate for
faster Zip/Deflate compression/decompression. We now have 2 kinds of
builds with the Zip/Deflate codec:
<LI><P>Added support for optional building against libdeflate for
faster Zip/Deflate compression/decompression.</P>
<P>We now have 2 kinds of builds with the Zip/Deflate codec:</P>
<UL>
<LI>zlib only</LI>
<LI>zlib + libdeflate</LI>

View File

@ -1,4 +1,4 @@
#define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.1.0\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc."
#define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.2.0\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc."
/*
* This define can be used in code that requires
* compilation-related definitions specific to a
@ -6,4 +6,4 @@
* version checking should be done based on the
* string returned by TIFFGetVersion.
*/
#define TIFFLIB_VERSION 20191103
#define TIFFLIB_VERSION 20201219