aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS14
-rw-r--r--configure.ac4
2 files changed, 15 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 37d1d26..9f6efa5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,22 @@
-*- org -*-
#+TITLE: guile-xapian NEWS – History of user-visible changes
-Copyright © 2022–2023 Arun Isaac <arunisaac@systemreboot.net>
+Copyright © 2022–2024 Arun Isaac <arunisaac@systemreboot.net>
Please send guile-xapian bug reports to arunisaac@systemreboot.net
+* Changes in 0.4.0 (since 0.3.1)
+** Features
+*** New higher level field processors
+New higher level field processors that wrap FieldProcessor,
+RangeProcessor and DateRangeProcessor are now available. You can now
+write these field processors conveniently in Scheme.
+*** parse-query accepts boolean prefixes, range processors and a few common query parser flags
+*** New query function
+new-Query is now exposed as the more Scheme-like query function.
+** Noteworthy bug fixes
+*** mset-snippet and mset-sxml-snippet now actually work
+
* Changes in 0.3.1 (since 0.3.0)
** Noteworthy bug fixes
*** Catch C++ xapian exceptions and raise them as scheme exceptions
diff --git a/configure.ac b/configure.ac
index f953339..5a458e2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
dnl guile-xapian --- Guile bindings for Xapian
-dnl Copyright © 2020, 2021, 2022, 2023 Arun Isaac <arunisaac@systemreboot.net>
+dnl Copyright © 2020–2024 Arun Isaac <arunisaac@systemreboot.net>
dnl
dnl This file is part of guile-xapian.
dnl
@@ -17,7 +17,7 @@ dnl You should have received a copy of the GNU General Public License
dnl along with guile-xapian. If not, see
dnl <https://www.gnu.org/licenses/>.
-AC_INIT([guile-xapian], [0.3.1])
+AC_INIT([guile-xapian], [0.4.0])
AM_INIT_AUTOMAKE([color-tests -Wall -Wno-portability foreign check-news no-dist-gzip dist-lzip])
AM_SILENT_RULES([yes])
LT_INIT