Skip to content

Commit 7da5bac

Browse files
committed
Prepare for 1.7.0 release
1 parent 527f6df commit 7da5bac

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

libgeotiff/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ SET(CMAKE_COLOR_MAKEFILE ON)
1818

1919
# Version information
2020
set(PROJECT_VERSION_MAJOR 1)
21-
set(PROJECT_VERSION_MINOR 6)
21+
set(PROJECT_VERSION_MINOR 7)
2222
set(PROJECT_VERSION_PATCH 0)
2323
set(PROJECT_VERSION
2424
"${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
@@ -29,7 +29,7 @@ set(GeoTIFF_VERSION ${PROJECT_VERSION})
2929
# libgeotiff.so.2 -> libgeotiff.so.2.2.0
3030
# libgeotiff.so.2.2.0
3131
set(LINK_SOVERSION "5")
32-
set(LINK_VERSION "5.0.1")
32+
set(LINK_VERSION "5.1.0")
3333

3434
string (TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWER)
3535
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 6:0:1 ${NOUNDEFINED}
56+
libgeotiff_la_LDFLAGS = -version-info 7:0:2 ${NOUNDEFINED}
5757

5858
libgeotiff_la_LIBADD = libxtiff/libxtiff.la
5959

libgeotiff/NEWS

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
libgeotiff 1.7.0
2+
----------------
3+
4+
* Add CoordinateEpochGeoKey = 5120 of type DOUBLE to store coordinate epoch of
5+
tie points / geotransform matrix for dynamic CRS.
6+
See https://github.com/opengeospatial/geotiff/pull/99
7+
* geo_normalize.h/c: rename variables to please codespell
8+
* GTIFGetGCSInfoEx(): use proj_crs_get_datum_forced() for PROJ >= 8 to avoid
9+
issues with datum ensembles (fixes #54)
10+
* GTIFGetGCSInfoEx(): remove dead code (GDAL Coverity CID 1432690)
11+
* geo_normalize.c: follow-up to e06625c4e5bcce9f9217d1d5a43dc6af73156283 to avoid
12+
look up of user-defined GeogGeodeticDatumGeoKey that cause PROJ warnings (fixes #41)
13+
114
libgeotiff 1.6.0
215
----------------
316

libgeotiff/configure.ac

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

22

33
m4_define([VERSION_MAJOR], [1])
4-
m4_define([VERSION_MINOR], [6])
4+
m4_define([VERSION_MINOR], [7])
55
m4_define([VERSION_POINT], [0])
66
m4_define([GEOTIFF_VERSION],
77
[VERSION_MAJOR.VERSION_MINOR.VERSION_POINT])

0 commit comments

Comments
 (0)