Skip to content

Commit fedbded

Browse files
BaseX 9.6 (August 19, 2021)
1 parent 4d18d20 commit fedbded

File tree

7 files changed

+26
-6
lines changed

7 files changed

+26
-6
lines changed

CHANGELOG

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
VERSION 9.6 (August 19, 2021) ------------------------------------------
2+
3+
XQUERY: MODULES, FEATURES
4+
- Archive Module, archive:write: stream large archives to file
5+
- SQL Module: support for more SQL types
6+
- Full-Text Module, ft:thesaurus: perform Thesaurus queries
7+
- Fulltext, fuzzy search: specify Levenshtein limit
8+
- UNROLLLIMIT option: controll limit for unrolling loops
9+
10+
XQUERY: JAVA BINDINGS
11+
- Java objects of unknown type are wrapped into function items
12+
- results of constructor calls are returned as function items
13+
- the standard package java.lang. has become optional
14+
- array arguments can be specified with the middle dot notation
15+
- conversion can be controlled with the WRAPJAVA option
16+
- better support for XQuery arrays and maps
17+
18+
WEB APPLICATIONS
19+
- RESTXQ: Server-Timing HTTP headers are attached to the reponse
20+
121
VERSION 9.5.2 (May 27, 2021) -------------------------------------------
222

323
- Performance tweaks, minor bug fixes

basex-api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.basex</groupId>
99
<artifactId>basex-parent</artifactId>
10-
<version>9.6-SNAPSHOT</version>
10+
<version>9.6</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313

basex-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.basex</groupId>
99
<artifactId>basex-parent</artifactId>
10-
<version>9.6-SNAPSHOT</version>
10+
<version>9.6</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313

basex-core/src/main/java/org/basex/util/Prop.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public final class Prop {
2222
/** Project name. */
2323
public static final String NAME = "BaseX";
2424
/** Code version (may contain major, minor and optional patch number). */
25-
public static final String VERSION = version("9.6 RC2");
25+
public static final String VERSION = version("9.6");
2626

2727
/** Project name. */
2828
public static final String PROJECT = NAME.toLowerCase(Locale.ENGLISH);

basex-examples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.basex</groupId>
99
<artifactId>basex-parent</artifactId>
10-
<version>9.6-SNAPSHOT</version>
10+
<version>9.6</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313

basex-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.basex</groupId>
99
<artifactId>basex-parent</artifactId>
10-
<version>9.6-SNAPSHOT</version>
10+
<version>9.6</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- Artifact information -->
66
<groupId>org.basex</groupId>
77
<artifactId>basex-parent</artifactId>
8-
<version>9.6-SNAPSHOT</version>
8+
<version>9.6</version>
99
<packaging>pom</packaging>
1010

1111
<distributionManagement>

0 commit comments

Comments
 (0)