From 05cb0449dbf27d36bd021052b681b57f769d1522 Mon Sep 17 00:00:00 2001 From: Evan Miller Date: Wed, 4 Aug 2021 16:52:37 -0400 Subject: [PATCH] Version 0.9.4, final --- NEWS | 17 +++++++++++++++++ configure.ac | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 648d1ca0..b385e8eb 100644 --- a/NEWS +++ b/NEWS @@ -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 ============= diff --git a/configure.ac b/configure.ac index 7393b76d..24063a35 100644 --- a/configure.ac +++ b/configure.ac @@ -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)