Version 0.9.4, final

This commit is contained in:
Evan Miller 2021-08-04 16:52:37 -04:00
parent f3053fbd45
commit 05cb0449db
2 changed files with 18 additions and 1 deletions

17
NEWS
View File

@ -1,3 +1,20 @@
Version 0.9.4
=============
libmdb:
* Write encrypted pages #305
* Improved support for big-endian platforms
* Remove obsolete `AC_HEADER_STDC` macro from configure.ac
SQL:
* Fix compilation on RHEL 7.9 #301
* Add brackets around table names in `mdb-query` output #307
* Support for brackets around table names in SQL parser
* Fix regression in 0.9.3 where `COUNT(*)` resulted in a parse error #318 #319
ODBC:
* Fix `-Werror=array-bounds` compile error #313
Version 0.9.3
=============

View File

@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT([mdbtools],[0.9.4-beta1],[https://github.com/mdbtools/mdbtools/issues],[],[https://github.com/mdbtools/mdbtools])
AC_INIT([mdbtools],[0.9.4],[https://github.com/mdbtools/mdbtools/issues],[],[https://github.com/mdbtools/mdbtools])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_SRCDIR(src/extras/mdb-dump.c)