File tree Expand file tree Collapse file tree 4 files changed +17
-4
lines changed
Expand file tree Collapse file tree 4 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ SET(CMAKE_COLOR_MAKEFILE ON)
1818
1919# Version information
2020set (PROJECT_VERSION_MAJOR 1)
21- set (PROJECT_VERSION_MINOR 6 )
21+ set (PROJECT_VERSION_MINOR 7 )
2222set (PROJECT_VERSION_PATCH 0)
2323set (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
3131set (LINK_SOVERSION "5" )
32- set (LINK_VERSION "5.0.1 " )
32+ set (LINK_VERSION "5.1.0 " )
3333
3434string (TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWER)
3535string (TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPER)
Original file line number Diff line number Diff 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
5858libgeotiff_la_LIBADD = libxtiff/libxtiff.la
5959
Original file line number Diff line number Diff line change 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+
114libgeotiff 1.6.0
215----------------
316
Original file line number Diff line number Diff line change 11
22
33m4_define ( [ VERSION_MAJOR] , [ 1] )
4- m4_define ( [ VERSION_MINOR] , [ 6 ] )
4+ m4_define ( [ VERSION_MINOR] , [ 7 ] )
55m4_define ( [ VERSION_POINT] , [ 0] )
66m4_define ( [ GEOTIFF_VERSION] ,
77 [ VERSION_MAJOR.VERSION_MINOR.VERSION_POINT] )
You can’t perform that action at this time.
0 commit comments