Skip to content

Commit

Permalink
BaseX 11.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianGruen committed Jan 31, 2025
1 parent 780d7c5 commit 3dfedb5
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
VERSION 11.7 (January 31, 2025) ----------------------------------------

- [ADD] XQuery: Ordered maps, preserving the insertion order
- [ADD] New Pipeline operator "->"
- [ADD] XQuery 3.1 function (finally) fn:load-xquery-module
- [ADD] New functions: fn:siblings, fn:type-of, fn:elements-to-maps
- [ADD] New parse functions: fn:parse-csv, fn:parse-html
- [ADD] HTML parsing: Support for both TagSoup and Validate.nu
- [MOD] Better readable serialization of doubles, maps and arrays
- [MOD] Store functions: only read if contents have changed
- [MOD] RESTXQERRORS option: if disabled, write error to logs
- [FIX] RESTXQ: Correct handling of query and form parameters

VERSION 11.6 (November 28, 2024) ---------------------------------------

- [ADD] New XQuery 4 features (sibling axes, civil-timezone, etc)
Expand Down
2 changes: 1 addition & 1 deletion basex-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.basex</groupId>
<artifactId>basex-parent</artifactId>
<version>11.7-SNAPSHOT</version>
<version>11.7</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion basex-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.basex</groupId>
<artifactId>basex-parent</artifactId>
<version>11.7-SNAPSHOT</version>
<version>11.7</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion basex-core/src/main/java/org/basex/util/Prop.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public final class Prop {
/** Project name. */
public static final String NAME = "BaseX";
/** Current version (major and minor number, optionally followed by development tag). */
private static final String CURRENT_VERSION = "11.7 beta";
private static final String CURRENT_VERSION = "11.7";

/** Name of project in lower case. */
public static final String PROJECT = NAME.toLowerCase(Locale.ENGLISH);
Expand Down
2 changes: 1 addition & 1 deletion basex-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.basex</groupId>
<artifactId>basex-parent</artifactId>
<version>11.7-SNAPSHOT</version>
<version>11.7</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion basex-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.basex</groupId>
<artifactId>basex-parent</artifactId>
<version>11.7-SNAPSHOT</version>
<version>11.7</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- Artifact information -->
<groupId>org.basex</groupId>
<artifactId>basex-parent</artifactId>
<version>11.7-SNAPSHOT</version>
<version>11.7</version>
<packaging>pom</packaging>

<distributionManagement>
Expand Down

0 comments on commit 3dfedb5

Please sign in to comment.