Dear all,
BaseX 9.5.1 is out. Some minor bugs have been fixed (nothing critical), and some more queries are rewritten to a faster representation.
For example, consecutive for and let clauses will be merged now, and…
for $e in 1 to 10 let $n := $e + 1 order by $n descending return string($n)
…will be optimized to:
reverse(2 to 11) ! string(.)
Have fun with the new release, stay healthy, Your BaseX Team