aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS19
-rw-r--r--configure.ac4
2 files changed, 20 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 832fd7f..0a6f8c7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,26 @@
1GNU dbm NEWS -- history of user-visible changes. 2017-03-11 1GNU dbm NEWS -- history of user-visible changes. 2018-01-01
2Copyright (C) 1990-2018 Free Software Foundation, Inc. 2Copyright (C) 1990-2018 Free Software Foundation, Inc.
3See the end of file for copying conditions. 3See the end of file for copying conditions.
4 4
5Please send gdbm bug reports to <bug-gdbm@gnu.org>. 5Please send gdbm bug reports to <bug-gdbm@gnu.org>.
6 6
7Version 1.14 - 2018-01-01
8
9* Make sure created databases are byte-for-byte reproducible
10
11This fixes two longstanding bugs: (1) when allocating database file
12header blocks, the unused memory is filled with zeroes; (2) when expanding
13a mmapped memory area, the added extent is filled with zeroes.
14
15* Fix build with --enable-gdbm-export
16
17* Make gdbm_error global variable thread safe.
18
19* Fix possible segmentation violation in gdbm_setopt
20
21* Fix handling of group headers in --help output.
22
23
7Version 1.13 - 2017-03-11 24Version 1.13 - 2017-03-11
8 25
9* gdbm_fetch, gdbm_firstkey, and gdbm_nextkey behavior 26* gdbm_fetch, gdbm_firstkey, and gdbm_nextkey behavior
diff --git a/configure.ac b/configure.ac
index a3b9457..7df2159 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,8 +16,8 @@
16# along with GDBM. If not, see <http://www.gnu.org/licenses/>. */ 16# along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
17 17
18m4_define([_GDBM_VERSION_MAJOR], 1) 18m4_define([_GDBM_VERSION_MAJOR], 1)
19m4_define([_GDBM_VERSION_MINOR], 13) 19m4_define([_GDBM_VERSION_MINOR], 14)
20m4_define([_GDBM_VERSION_PATCH], 90) 20dnl m4_define([_GDBM_VERSION_PATCH], )
21 21
22AC_INIT([gdbm], 22AC_INIT([gdbm],
23 _GDBM_VERSION_MAJOR._GDBM_VERSION_MINOR[]m4_ifdef([_GDBM_VERSION_PATCH],._GDBM_VERSION_PATCH), 23 _GDBM_VERSION_MAJOR._GDBM_VERSION_MINOR[]m4_ifdef([_GDBM_VERSION_PATCH],._GDBM_VERSION_PATCH),

Return to:

Send suggestions and report system problems to the System administrator.