aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-08-21 14:09:11 +0300
committerSergey Poznyakoff <gray@gnu.org>2018-08-21 14:09:11 +0300
commit778cc81d55aecd6344d577919cec73e4e6980e2e (patch)
tree5c39c484538021b99ba48320ded2aba6201e547d
parent64ef7e827406f91d31bffdcad9f4b8aaad1f874c (diff)
downloadgdbm-778cc81d55aecd6344d577919cec73e4e6980e2e.tar.gz
gdbm-778cc81d55aecd6344d577919cec73e4e6980e2e.tar.bz2
Version 1.18v1.18
-rw-r--r--NEWS24
-rw-r--r--configure.ac2
2 files changed, 24 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 1ca9a32..ff68210 100644
--- a/NEWS
+++ b/NEWS
@@ -1,12 +1,34 @@
-GNU dbm NEWS -- history of user-visible changes. 2018-08-12
+GNU dbm NEWS -- history of user-visible changes. 2018-08-21
Copyright (C) 1990-2018 Free Software Foundation, Inc.
See the end of file for copying conditions.
Please send gdbm bug reports to <bug-gdbm@gnu.org>.
+Version 1.18 - 2018-08-21
+
+* Bugfixes:
+
+** Fix directory entry validation
+See https://puszcza.gnu.org.ua/bugs/?402
+
+Directory validation function would falsely report corruption after
+several directory reallocations.
+
+** Fix improper use of GDBM_DEBUG macro
+See https://puszcza.gnu.org.ua/bugs/?401
+
+** Fix spurious error from gdbm_dump and gdbm_export
+
+The functions incorrectly reported as error the GDBM_ITEM_NOT_FOUND
+status, which is reported when upon normal termination of iteration
+over the database keys.
+
+** Make sure gdbm_sync always returns a meaningful value
+See https://puszcza.gnu.org.ua/bugs/?400
+
Version 1.17 - 2018-07-30
* int gdbm_close and gdbm_sync
Both functions now return 0 on success. On error, they return -1
and set gdbm_errno and errno to the appropriate error codes.
diff --git a/configure.ac b/configure.ac
index 6079fd7..d6c9be4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,13 +13,13 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
m4_define([_GDBM_VERSION_MAJOR], 1)
-m4_define([_GDBM_VERSION_MINOR], 17)
+m4_define([_GDBM_VERSION_MINOR], 18)
dnl m4_define([_GDBM_VERSION_PATCH], 0)
AC_INIT([gdbm],
_GDBM_VERSION_MAJOR._GDBM_VERSION_MINOR[]m4_ifdef([_GDBM_VERSION_PATCH],._GDBM_VERSION_PATCH),
[bug-gdbm@gnu.org],,
[http://www.gnu.org/software/gdbm])

Return to:

Send suggestions and report system problems to the System administrator.