From 2aea0e2e419ab62bd656a23db769b21c801df96d Mon Sep 17 00:00:00 2001 From: Evan Miller Date: Wed, 25 Aug 2021 08:49:57 -0400 Subject: [PATCH] Version 1.0.0, Beta 4 --- NEWS | 14 ++++++++++++++ README.md | 2 +- configure.ac | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index ccb67c2..95705c2 100644 --- a/NEWS +++ b/NEWS @@ -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) ============= diff --git a/README.md b/README.md index bf503b1..551e185 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/configure.ac b/configure.ac index 41a95c4..a8762bd 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],[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)