summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2021-06-17 13:16:25 +0300
committerSergey Poznyakoff <gray@gnu.org>2021-06-17 13:16:25 +0300
commitab9dff7ced3ea9a458bfae0caf339aaa5a77521f (patch)
treeda5cfbeaec16ab6eedde154696d444885ac40279
parentd69a106c04a6a7abe65e9150e5bf211d35a757f0 (diff)
downloadgdbm-ab9dff7ced3ea9a458bfae0caf339aaa5a77521f.tar.gz
Version 1.20v1.20
-rw-r--r--NEWS5
-rw-r--r--configure.ac3
-rw-r--r--src/gdbm.h.in2
3 files changed, 5 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index e7c8216..bde2bcd 100644
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,10 @@
-GNU dbm NEWS -- history of user-visible changes. 2021-06-14
+GNU dbm NEWS -- history of user-visible changes. 2021-06-17
Copyright (C) 1990-2021 Free Software Foundation, Inc.
See the end of file for copying conditions.
Please send gdbm bug reports to <bug-gdbm@gnu.org>.
-Version 1.19.90 (git)
+Version 1.20, 2021-06-17
* New bucket cache
@@ -22,6 +22,7 @@ to gdbm_open: GDBM_PREREAD. When given, it enables pre-reading of
memory mapped regions.
See https://github.com/Perl/perl5/issues/18884 for details.
+
Version 1.19 - 2020-12-23
diff --git a/configure.ac b/configure.ac
index 7abd0bc..8e4e1de 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,8 +15,7 @@
# along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
m4_define([_GDBM_VERSION_MAJOR], 1)
-m4_define([_GDBM_VERSION_MINOR], 19)
-m4_define([_GDBM_VERSION_PATCH], 90)
+m4_define([_GDBM_VERSION_MINOR], 20)
AC_INIT([gdbm],
_GDBM_VERSION_MAJOR._GDBM_VERSION_MINOR[]m4_ifdef([_GDBM_VERSION_PATCH],._GDBM_VERSION_PATCH),
diff --git a/src/gdbm.h.in b/src/gdbm.h.in
index a916457..be6a11a 100644
--- a/src/gdbm.h.in
+++ b/src/gdbm.h.in
@@ -54,7 +54,7 @@ extern "C" {
set it. */
# define GDBM_CLOERROR 0x0400 /* Only for gdbm_fd_open: close fd on error. */
# define GDBM_XVERIFY 0x0800 /* Additional consistency checks. */
-# define GDBM_PREREAD 0x1000
+# define GDBM_PREREAD 0x1000 /* Enable pre-fault reading of mmapped regions. */
/* Parameters to gdbm_store for simple insertion or replacement in the
case that the key is already in the database. */