From 33b9dfa52f50f83afab1a2bc9769863853b04ff4 Mon Sep 17 00:00:00 2001 From: Evan Miller Date: Wed, 4 Aug 2021 17:04:49 -0400 Subject: [PATCH] Version 1.0.0, Beta 1 --- NEWS | 38 ++++++++++++++++++++++++++++++++++++++ configure.ac | 10 +++++----- 2 files changed, 43 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index 648d1ca0..7c3f4772 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,41 @@ +Version 1.0.0 (Beta 1) +============= + +libmdb: +* Generate platform-specific `mdbtools.h` at configure-time #316 + +SQL: +* New case-insensitive, Unicode-aware `ILIKE` operator #244 +* Do not install `mdb-sql` if SQL support was not built #276 +* Do not install `libmdbsql.pc` if SQL support was not built + +ODBC: +* Install libmdbodbc.so and libmdbodbcW.so into ${libdir}/odbc #315 + +mdb-export: +* Convert table names to lower case when exporting to PostgreSQL #322 +* Use `CREATE IF NOT EXISTS` when exporting to PostgreSQL #321 + +mdb-hexdump: +* Deprecate tool + +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 4fda8438..3c657b28 100644 --- a/configure.ac +++ b/configure.ac @@ -1,17 +1,17 @@ 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],[1.0.0-beta1],[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) AM_INIT_AUTOMAKE([foreign dist-zip]) -MDBTOOLS_VERSION_MAJOR=0 -MDBTOOLS_VERSION_MINOR=9 -MDBTOOLS_VERSION_MICRO=4 +MDBTOOLS_VERSION_MAJOR=1 +MDBTOOLS_VERSION_MINOR=0 +MDBTOOLS_VERSION_MICRO=0 # Update these numbers with every release # See https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html -VERSION_INFO=3:4:0 +VERSION_INFO=4:0:0 AC_SUBST(VERSION_INFO) AC_SUBST(MDBTOOLS_CFLAGS)