Skip to content

Commit 129b1d5

Browse files
committed
Updates for 1.6.2 release
1 parent 0e64d24 commit 129b1d5

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ message(STATUS "CMAKE_SYSTEM_NAME = ${CMAKE_SYSTEM_NAME}")
2121

2222
set(PROJECT_VERSION_MAJOR 1)
2323
set(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")
2626
set(PROJECT_VERSION
2727
"${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
2828

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
22

33
m4_define(shapelib_version_major, 1)
44
m4_define(shapelib_version_minor, 6)
5-
m4_define(shapelib_version_micro, 1)
5+
m4_define(shapelib_version_micro, 2)
66

77
AC_PREREQ(2.62)
88
AC_INIT(shapelib, shapelib_version_major.shapelib_version_minor.shapelib_version_micro)
@@ -28,7 +28,7 @@ AM_SILENT_RULES([yes])
2828
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
2929

3030
dnl 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

3333
AC_PROG_CC
3434
AC_PROG_CXX

shapefil.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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))

web/release.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,18 @@ <h1>Shapelib Release Notes</h1>
1010
To get notification of new releases of Shapelib <i>subscribe</i> to
1111
the 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>

0 commit comments

Comments
 (0)