aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS5
-rw-r--r--configure.ac1
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 8f2063b..debbb20 100644
--- a/NEWS
+++ b/NEWS
@@ -1,22 +1,25 @@
1GNU dbm NEWS -- history of user-visible changes. 2022-07-01 1GNU dbm NEWS -- history of user-visible changes. 2023-03-03
2Copyright (C) 1990-2023 Free Software Foundation, Inc. 2Copyright (C) 1990-2023 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.23.90 (git)
7 8
8* New gdbm_load option: --update 9* New gdbm_load option: --update
9 10
10The --update (-U) option instructs gdbm_load to update an existing 11The --update (-U) option instructs gdbm_load to update an existing
11database, whose name is supplied by the second argument. 12database, whose name is supplied by the second argument.
12 13
13* Fix semantics of gdbm_load -r 14* Fix semantics of gdbm_load -r
14 15
15The --replace (-r) is valid only when used together with --update. 16The --replace (-r) is valid only when used together with --update.
16 17
18* Bugfixes
19
17 20
18Version 1.23, 2022-02-04 21Version 1.23, 2022-02-04
19 22
20* Bucket cache switched from balanced tree to hash table 23* Bucket cache switched from balanced tree to hash table
21 24
22Change suggested by Terence Kelly. 25Change suggested by Terence Kelly.
diff --git a/configure.ac b/configure.ac
index b67b176..3cb4b62 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,12 +13,13 @@
13# 13#
14# You should have received a copy of the GNU General Public License 14# You should have received a copy of the GNU General Public License
15# along with GDBM. If not, see <http://www.gnu.org/licenses/>. */ 15# along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
16 16
17m4_define([_GDBM_VERSION_MAJOR], 1) 17m4_define([_GDBM_VERSION_MAJOR], 1)
18m4_define([_GDBM_VERSION_MINOR], 23) 18m4_define([_GDBM_VERSION_MINOR], 23)
19m4_define([_GDBM_VERSION_PATCH], 90)
19 20
20AC_INIT([gdbm], 21AC_INIT([gdbm],
21 _GDBM_VERSION_MAJOR._GDBM_VERSION_MINOR[]m4_ifdef([_GDBM_VERSION_PATCH],._GDBM_VERSION_PATCH), 22 _GDBM_VERSION_MAJOR._GDBM_VERSION_MINOR[]m4_ifdef([_GDBM_VERSION_PATCH],._GDBM_VERSION_PATCH),
22 [bug-gdbm@gnu.org],, 23 [bug-gdbm@gnu.org],,
23 [http://www.gnu.org/software/gdbm]) 24 [http://www.gnu.org/software/gdbm])
24 25

Return to:

Send suggestions and report system problems to the System administrator.