Skip to content

Commit cbc914a

Browse files
committed
Prepare for 1.4.3 release
git-svn-id: https://svn.osgeo.org/metacrs/geotiff/trunk@2828 4e78687f-474d-0410-85f9-8d5e500ac6b2
1 parent 7f4cbc3 commit cbc914a

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

libgeotiff/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ SET(CMAKE_COLOR_MAKEFILE ON)
1919
# Version information
2020
set(PROJECT_VERSION_MAJOR 1)
2121
set(PROJECT_VERSION_MINOR 4)
22-
set(PROJECT_VERSION_PATCH 2)
22+
set(PROJECT_VERSION_PATCH 3)
2323
set(PROJECT_VERSION
2424
"${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
2525
set(GeoTIFF_VERSION ${PROJECT_VERSION})
2626

2727
# Set library version to match that of autoconf:
28-
# libgeotiff.so -> libgeotiff.so.2.1.1
29-
# libgeotiff.so.2 -> libgeotiff.so.2.1.2
30-
# libgeotiff.so.2.1.2
28+
# libgeotiff.so -> libgeotiff.so.2.2.0
29+
# libgeotiff.so.2 -> libgeotiff.so.2.2.0
30+
# libgeotiff.so.2.2.0
3131
set(LINK_SOVERSION "2")
32-
set(LINK_VERSION "2.1.2")
32+
set(LINK_VERSION "2.2.0")
3333

3434
string (TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWER)
3535
string (TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPER)

libgeotiff/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2018-12-07 Even Rouault <even dot rouault at spatialys dot com>
2+
3+
* Prepare for 1.4.3
4+
15
2018-05-23 Even Rouault <even dot rouault at spatialys dot com>
26

37
* geo_set.c: when rewriting a ASCII key with a string value longer than

libgeotiff/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ if CSV_IS_CONFIG
110110
csv/unit_of_measure.c
111111
endif
112112

113-
libgeotiff_la_LDFLAGS = -version-info 3:2:1
113+
libgeotiff_la_LDFLAGS = -version-info 4:0:2
114114

115115
libgeotiff_la_LIBADD = libxtiff/libxtiff.la
116116

libgeotiff/configure.ac

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

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

0 commit comments

Comments
 (0)