Skip to content

Commit 8b1a8f5

Browse files
committed
Prepare for libgeotiff 1.6.0 release
1 parent 2aa52b8 commit 8b1a8f5

File tree

4 files changed

+29
-6
lines changed

4 files changed

+29
-6
lines changed

libgeotiff/CMakeLists.txt

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

1919
# Version information
2020
set(PROJECT_VERSION_MAJOR 1)
21-
set(PROJECT_VERSION_MINOR 5)
22-
set(PROJECT_VERSION_PATCH 1)
21+
set(PROJECT_VERSION_MINOR 6)
22+
set(PROJECT_VERSION_PATCH 0)
2323
set(PROJECT_VERSION
2424
"${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
2525
set(GeoTIFF_VERSION ${PROJECT_VERSION})
@@ -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.0")
32+
set(LINK_VERSION "5.0.1")
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 5:1:0 ${NOUNDEFINED}
56+
libgeotiff_la_LDFLAGS = -version-info 6:0:1 ${NOUNDEFINED}
5757

5858
libgeotiff_la_LIBADD = libxtiff/libxtiff.la
5959

libgeotiff/NEWS

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
libgeotiff 1.6.0
2+
----------------
3+
4+
New features:
5+
* Add support for OGC GeoTIFF 1.1
6+
* Expose GTIFGetPCSInfoEx(), GTIFGetProjTRFInfoEx(), GTIFGetGCSInfoEx(), GTIFGetDatumInfoEx(), GTIFGetEllipsoidInfoEx(), GTIFGetPMInfoEx(), GTIFGetUOMLengthInfoEx() and GTIFGetUOMAngleInfoEx() so that users can specify their own PROJ context
7+
* Add GTIFKeyGetASCII(), GTIFKeyGetSHORT() and GTIFKeyGetDOUBLE() as safer variants of GTIFKeyGet() with type checking
8+
* autotools build: enable build in a separate tree from source (#37) (fixes #28)
9+
* Use pkg-config for libtiff detection
10+
11+
Bug fixes:
12+
* GTIFDecToDMS(): fix rounding issue (refs #16)
13+
* geo_names.c: Silence warning in GetNameFromDatabase
14+
* cpl_serv.h: add parenthesis in macro definitions
15+
* Fix spelling errors
16+
* geo_normalize.c: set UOMLength from GeogLinearUnits (for geocentic CRS) (GDAL #1595)
17+
* testlistgeo: remove hardcoded path in test output (fixes https://github.com/OSGeo/libgeotiff/issues/16#issuecomment-502267406)
18+
* Adapt test script for PROJ 6.2 EPSG database (fixes #22)
19+
* Use unix EOL for cmake related files (fixes #14)
20+
* configure.ac: drop dead code
21+
* geo_normalize.c: avoid look up of user-defined geokeys that cause PROJ warnings (fixes GDAL #2321)
22+
* listgeo: fix corner coordinates for images with RasterPixelIsPoint (#36)
23+
124
libgeotiff 1.5.1
225
----------------
326

libgeotiff/configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22

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

0 commit comments

Comments
 (0)