Version 1.0.0, Beta 4

This commit is contained in:
Evan Miller 2021-08-25 08:49:57 -04:00
parent 6faf1b8615
commit 2aea0e2e41
3 changed files with 16 additions and 2 deletions

14
NEWS
View File

@ -1,3 +1,17 @@
Version 1.0.0 (Beta 4)
=============
Build:
* New `--disable-iconv` configure option (falls back to `wcstombs` where possible)
* Fix a build error when `./configure` detected iconv, but thought it was not working
* Generating the configure script now requires autoconf 2.64 or later
ODBC:
* The Unicode driver (`libmdbodbcW.so`) no longer uses iconv #332 #333
SQL:
* New `<>` (not equal) operator #329
Version 1.0.0 (Beta 3)
=============

View File

@ -74,7 +74,7 @@ First, you must have reasonably current installations of:
* [libtool](https://www.gnu.org/software/libtool/)
* [automake](https://www.gnu.org/software/automake/)
* [autoconf](https://www.gnu.org/software/autoconf/) (version >= 2.58)
* [autoconf](https://www.gnu.org/software/autoconf/) (version >= 2.64)
If you want to build the SQL engine, you'll need
[bison](https://www.gnu.org/software/bison/) (version >= 3.0) or

View File

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