Version 0.9.2, Beta 2

This commit is contained in:
Evan Miller 2021-01-20 09:14:29 -05:00
parent 9904b079bf
commit 848303f9f0
2 changed files with 28 additions and 1 deletions

27
NEWS
View File

@ -1,3 +1,29 @@
Version 0.9.2 (Beta 2)
=============
* Updated man pages with new SQL features and correct `MDBOPTS` information (#203)
* Add generated API documentation (#239)
* `mdb-export`: Fix issue where exported SQL field sizes were sometimes twice the necessary size (#112)
* `mdb-queries` now has long option names `--list`, `--newline`, and `--delimiter`
* All CLI tools which accept string arguments are now locale-aware
* All CLI tools now accept a `--version` argument (#232)
* libmdb: Add support for numeric scale/precision on JET3 databases and floating-point column types
* ODBC: `SQLBindCol` now respects its TargetType (fCType) argument and converts bound data to the requested type (#23 #242)
* ODBC: `SQLFetchCol` now returns `SQL_SUCCESS_WITH_INFO` if a bound column was truncated, and `SQL_ERROR` if a bound value is out of range of the target type.
Version 0.9.2 (Beta 1)
=============
* Make command-line arguments aware of the user's locale (#237)
* `mdb-schema`: Exit with an error code if the requested table is not found
* Fuzz-test all pull requests (#230)
* libmdb: Fix infinite loop with malformed input (oss-fuzz/28789)
* libmdb: Fix buffer overrun and some out of bounds memory accesses (oss-fuzz/28832 + oss-fuzz/28807)
* libmdb: Fix potential memory leak (oss-fuzz/28791)
* libmdb: Improved bounds and return value checking (oss-fuzz/29328 + oss-fuzz/29329)
Version 0.9.1
=============
@ -21,6 +47,7 @@ Version 0.9.1
* Improved support for databases that were improperly closed #120
* Remove warnings about mdb_find_row and row_size that did not necessarily indicate a problem
Version 0.9.0
=============

View File

@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT([mdbtools],[0.9.2-beta1],[https://github.com/mdbtools/mdbtools/issues],[],[https://github.com/mdbtools/mdbtools])
AC_INIT([mdbtools],[0.9.2-beta2],[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)