Skip to content

Commit

Permalink
Prepare for libgeotiff 1.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Apr 22, 2020
1 parent 2aa52b8 commit 8b1a8f5
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 6 deletions.
6 changes: 3 additions & 3 deletions libgeotiff/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ SET(CMAKE_COLOR_MAKEFILE ON)

# Version information
set(PROJECT_VERSION_MAJOR 1)
set(PROJECT_VERSION_MINOR 5)
set(PROJECT_VERSION_PATCH 1)
set(PROJECT_VERSION_MINOR 6)
set(PROJECT_VERSION_PATCH 0)
set(PROJECT_VERSION
"${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
set(GeoTIFF_VERSION ${PROJECT_VERSION})
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.0")
set(LINK_VERSION "5.0.1")

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 5:1:0 ${NOUNDEFINED}
libgeotiff_la_LDFLAGS = -version-info 6:0:1 ${NOUNDEFINED}

libgeotiff_la_LIBADD = libxtiff/libxtiff.la

Expand Down
23 changes: 23 additions & 0 deletions libgeotiff/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
libgeotiff 1.6.0
----------------

New features:
* Add support for OGC GeoTIFF 1.1
* Expose GTIFGetPCSInfoEx(), GTIFGetProjTRFInfoEx(), GTIFGetGCSInfoEx(), GTIFGetDatumInfoEx(), GTIFGetEllipsoidInfoEx(), GTIFGetPMInfoEx(), GTIFGetUOMLengthInfoEx() and GTIFGetUOMAngleInfoEx() so that users can specify their own PROJ context
* Add GTIFKeyGetASCII(), GTIFKeyGetSHORT() and GTIFKeyGetDOUBLE() as safer variants of GTIFKeyGet() with type checking
* autotools build: enable build in a separate tree from source (#37) (fixes #28)
* Use pkg-config for libtiff detection

Bug fixes:
* GTIFDecToDMS(): fix rounding issue (refs #16)
* geo_names.c: Silence warning in GetNameFromDatabase
* cpl_serv.h: add parenthesis in macro definitions
* Fix spelling errors
* geo_normalize.c: set UOMLength from GeogLinearUnits (for geocentic CRS) (GDAL #1595)
* testlistgeo: remove hardcoded path in test output (fixes /~https://github.com/OSGeo/libgeotiff/issues/16#issuecomment-502267406)
* Adapt test script for PROJ 6.2 EPSG database (fixes #22)
* Use unix EOL for cmake related files (fixes #14)
* configure.ac: drop dead code
* geo_normalize.c: avoid look up of user-defined geokeys that cause PROJ warnings (fixes GDAL #2321)
* listgeo: fix corner coordinates for images with RasterPixelIsPoint (#36)

libgeotiff 1.5.1
----------------

Expand Down
4 changes: 2 additions & 2 deletions libgeotiff/configure.ac
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@


m4_define([VERSION_MAJOR], [1])
m4_define([VERSION_MINOR], [5])
m4_define([VERSION_POINT], [1])
m4_define([VERSION_MINOR], [6])
m4_define([VERSION_POINT], [0])
m4_define([GEOTIFF_VERSION],
[VERSION_MAJOR.VERSION_MINOR.VERSION_POINT])

Expand Down

0 comments on commit 8b1a8f5

Please sign in to comment.