Skip to content

Commit 790228d

Browse files
committed
Prepare for libgeotiff 1.7.2
1 parent a7ade85 commit 790228d

File tree

5 files changed

+28
-8
lines changed

5 files changed

+28
-8
lines changed

libgeotiff/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ SET(CMAKE_COLOR_MAKEFILE ON)
2121
# Version information
2222
set(PROJECT_VERSION_MAJOR 1)
2323
set(PROJECT_VERSION_MINOR 7)
24-
set(PROJECT_VERSION_PATCH 1)
24+
set(PROJECT_VERSION_PATCH 2)
2525
set(PROJECT_VERSION
2626
"${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
2727
set(GeoTIFF_VERSION ${PROJECT_VERSION})
2828

2929
# Set library version to match that of autoconf:
30-
# libgeotiff.so -> libgeotiff.so.2.2.0
31-
# libgeotiff.so.2 -> libgeotiff.so.2.2.0
32-
# libgeotiff.so.2.2.0
30+
# libgeotiff.so -> libgeotiff.so.5
31+
# libgeotiff.so.5 -> libgeotiff.so.5.2.2
32+
# libgeotiff.so.5.2.2
3333
set(LINK_SOVERSION "5")
34-
set(LINK_VERSION "5.2.0")
34+
set(LINK_VERSION "5.2.2")
3535

3636
string (TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWER)
3737
string (TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPER)

libgeotiff/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ libgeotiff_la_SOURCES = cpl_serv.c \
5353
geo_strtod.c \
5454
geotiff_proj4.c
5555

56-
libgeotiff_la_LDFLAGS = -version-info 7:1:2 ${NOUNDEFINED}
56+
libgeotiff_la_LDFLAGS = -version-info 7:2:2 ${NOUNDEFINED}
5757

5858
libgeotiff_la_LIBADD = libxtiff/libxtiff.la
5959

libgeotiff/NEWS

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
libgeotiff 1.7.2
2+
----------------
3+
4+
* GTIFGetDatumInfoEx(): handle dynamic datums
5+
* CMake: adopt GNUInstallDirs
6+
* CMake: export TIFF as a public dependency
7+
* Add XTIFFClientOpenExt() with re-entrant error callbacks
8+
* listgeo: add a -no_corners option to avoid printing corner
9+
coordinates which might be PROJ version sensitive (refs #81)
10+
* Fix test failures with PROJ 9.1.1 and 9.3
11+
* Remove trailing spaces from many files.
12+
* Localize variables and add const when possible in a number of files
13+
* geo_normalize.c: sprintf --> snprintf
14+
* Add missing includes
15+
* Fix -Werror=calloc-transposed-args with gcc 14
16+
* FindPROJ.cmake: proj_experimental;h -> proj_experimental.h
17+
* CMake: add a BUILD_SHARED_LIBS option, and make it default to ON
18+
* autoconf/CMake: add generation of libgeotiff.pc
19+
* Remove INSTALL and install-sh autoconf-generated files
20+
121
libgeotiff 1.7.1
222
----------------
323

libgeotiff/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
m4_define([VERSION_MAJOR], [1])
44
m4_define([VERSION_MINOR], [7])
5-
m4_define([VERSION_POINT], [1])
5+
m4_define([VERSION_POINT], [2])
66
m4_define([GEOTIFF_VERSION],
77
[VERSION_MAJOR.VERSION_MINOR.VERSION_POINT])
88

libgeotiff/geotiff.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
#define GEOTIFF_SPEC_1_1_MINOR_REVISION 1
4848

4949
/* Library version */
50-
#define LIBGEOTIFF_VERSION 1710
50+
#define LIBGEOTIFF_VERSION 1720
5151

5252
#include "geo_config.h"
5353
#include "geokeys.h"

0 commit comments

Comments
 (0)