File tree Expand file tree Collapse file tree 4 files changed +17
-5
lines changed
Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ message(STATUS "CMAKE_SYSTEM_NAME = ${CMAKE_SYSTEM_NAME}")
2121
2222set (PROJECT_VERSION_MAJOR 1)
2323set (PROJECT_VERSION_MINOR 6)
24- set (PROJECT_VERSION_PATCH 1 )
25- set (shp_LIB_VERSIONINFO "5 :0:1 " )
24+ set (PROJECT_VERSION_PATCH 2 )
25+ set (shp_LIB_VERSIONINFO "6 :0:2 " )
2626set (PROJECT_VERSION
2727 "${PROJECT_VERSION_MAJOR} .${PROJECT_VERSION_MINOR} .${PROJECT_VERSION_PATCH} " )
2828
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
22
33m4_define ( shapelib_version_major , 1 )
44m4_define ( shapelib_version_minor , 6 )
5- m4_define ( shapelib_version_micro , 1 )
5+ m4_define ( shapelib_version_micro , 2 )
66
77AC_PREREQ ( 2.62 )
88AC_INIT ( shapelib , shapelib_version_major.shapelib_version_minor.shapelib_version_micro )
@@ -28,7 +28,7 @@ AM_SILENT_RULES([yes])
2828m4_ifdef ( [ AM_PROG_AR] , [ AM_PROG_AR] )
2929
3030dnl See http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
31- AC_SUBST ( [ SHAPELIB_SO_VERSION] , [ 5 :0:1 ] )
31+ AC_SUBST ( [ SHAPELIB_SO_VERSION] , [ 6 :0:2 ] )
3232
3333AC_PROG_CC
3434AC_PROG_CXX
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ extern "C"
3333
3434#define SHAPELIB_VERSION_MAJOR 1
3535#define SHAPELIB_VERSION_MINOR 6
36- #define SHAPELIB_VERSION_MICRO 1
36+ #define SHAPELIB_VERSION_MICRO 2
3737
3838#define SHAPELIB_MAKE_VERSION_NUMBER (major , minor , micro ) \
3939 ((major) * 10000 + (minor) * 100 + (micro))
Original file line number Diff line number Diff line change @@ -10,6 +10,18 @@ <h1>Shapelib Release Notes</h1>
1010To get notification of new releases of Shapelib < i > subscribe</ i > to
1111the project mailing list at https://lists.osgeo.org/pipermail/shapelib/.< p >
1212
13+ < b > Release 1.6.2</ b > :
14+ < ul >
15+ < li > Nullify userdata also in SASetupUtf8Hooks</ li >
16+ < li > Test suite enhancements</ li >
17+ < li > CMake: no longer use CTest and add manual BUILD_TESTING option instead (default to ON)</ li >
18+ < li > Prefer tagged version of Google Benchmark</ li >
19+ < li > dbfcreate: allow creation of Date and Logical fields #167 (#168)</ li >
20+ < li > Fix cppcheck nullPointerOutOfMemory warnings</ li >
21+ < li > DBFWriteAttribute(): return true when no precision loss occured when writing a double</ li >
22+ < li > SHPCreateLL()/DBFCreate(): make error message contains full filename (in case it is very long)</ li >
23+ </ ul >
24+
1325< b > Release 1.6.1</ b > :
1426< ul >
1527< li > DBFIsValueNULL(): accept empty string as NULL Date (https://github.com/OSGeo/gdal/issues/10405)</ li >
You can’t perform that action at this time.
0 commit comments