Skip to content

Commit

Permalink
Prepare for 1.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Jun 30, 2021
1 parent 527f6df commit 7da5bac
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
4 changes: 2 additions & 2 deletions libgeotiff/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion libgeotiff/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
13 changes: 13 additions & 0 deletions libgeotiff/NEWS
Original file line number Diff line number Diff line change
@@ -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
----------------

Expand Down
2 changes: 1 addition & 1 deletion libgeotiff/configure.ac
Original file line number Diff line number Diff line change
@@ -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])
Expand Down

0 comments on commit 7da5bac

Please sign in to comment.