From 7da5bacae7814c65ebb78f0b64e1141fbcb3de1e Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Wed, 30 Jun 2021 10:50:45 +0200 Subject: [PATCH] Prepare for 1.7.0 release --- libgeotiff/CMakeLists.txt | 4 ++-- libgeotiff/Makefile.am | 2 +- libgeotiff/NEWS | 13 +++++++++++++ libgeotiff/configure.ac | 2 +- 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/libgeotiff/CMakeLists.txt b/libgeotiff/CMakeLists.txt index 43113fa3..275eff96 100644 --- a/libgeotiff/CMakeLists.txt +++ b/libgeotiff/CMakeLists.txt @@ -18,7 +18,7 @@ SET(CMAKE_COLOR_MAKEFILE ON) # Version information set(PROJECT_VERSION_MAJOR 1) -set(PROJECT_VERSION_MINOR 6) +set(PROJECT_VERSION_MINOR 7) set(PROJECT_VERSION_PATCH 0) set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") @@ -29,7 +29,7 @@ set(GeoTIFF_VERSION ${PROJECT_VERSION}) # libgeotiff.so.2 -> libgeotiff.so.2.2.0 # libgeotiff.so.2.2.0 set(LINK_SOVERSION "5") -set(LINK_VERSION "5.0.1") +set(LINK_VERSION "5.1.0") string (TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWER) string (TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPER) diff --git a/libgeotiff/Makefile.am b/libgeotiff/Makefile.am index ce691069..5bc86857 100644 --- a/libgeotiff/Makefile.am +++ b/libgeotiff/Makefile.am @@ -53,7 +53,7 @@ libgeotiff_la_SOURCES = cpl_serv.c \ geo_strtod.c \ geotiff_proj4.c -libgeotiff_la_LDFLAGS = -version-info 6:0:1 ${NOUNDEFINED} +libgeotiff_la_LDFLAGS = -version-info 7:0:2 ${NOUNDEFINED} libgeotiff_la_LIBADD = libxtiff/libxtiff.la diff --git a/libgeotiff/NEWS b/libgeotiff/NEWS index 157ceeb8..5e729922 100644 --- a/libgeotiff/NEWS +++ b/libgeotiff/NEWS @@ -1,3 +1,16 @@ +libgeotiff 1.7.0 +---------------- + +* Add CoordinateEpochGeoKey = 5120 of type DOUBLE to store coordinate epoch of + tie points / geotransform matrix for dynamic CRS. + See https://github.com/opengeospatial/geotiff/pull/99 +* geo_normalize.h/c: rename variables to please codespell +* GTIFGetGCSInfoEx(): use proj_crs_get_datum_forced() for PROJ >= 8 to avoid + issues with datum ensembles (fixes #54) +* GTIFGetGCSInfoEx(): remove dead code (GDAL Coverity CID 1432690) +* geo_normalize.c: follow-up to e06625c4e5bcce9f9217d1d5a43dc6af73156283 to avoid + look up of user-defined GeogGeodeticDatumGeoKey that cause PROJ warnings (fixes #41) + libgeotiff 1.6.0 ---------------- diff --git a/libgeotiff/configure.ac b/libgeotiff/configure.ac index 621c3f4f..6c9f4b78 100644 --- a/libgeotiff/configure.ac +++ b/libgeotiff/configure.ac @@ -1,7 +1,7 @@ m4_define([VERSION_MAJOR], [1]) -m4_define([VERSION_MINOR], [6]) +m4_define([VERSION_MINOR], [7]) m4_define([VERSION_POINT], [0]) m4_define([GEOTIFF_VERSION], [VERSION_MAJOR.VERSION_MINOR.VERSION_POINT])