Skip to content

Commit 69553c7

Browse files
BaseX 10.1 (August 18, 2022)
1 parent faba5d1 commit 69553c7

File tree

7 files changed

+14
-6
lines changed

7 files changed

+14
-6
lines changed

CHANGELOG

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
VERSION 10.1 (August 18, 2022) -----------------------------------------
2+
3+
- Bug fix: HTTP Requests, sending headers
4+
- Bug fix: Storage handling of main-memory databases
5+
- Bug fix: GUI editor, double clicks
6+
- Bug fix: function items and mixed updates
7+
- undocumented XQuery 4 preview features
8+
19
VERSION 10.0 (August 1, 2022) ------------------------------------------
210

311
STORAGE

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>10.1-SNAPSHOT</version>
10+
<version>10.1</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>10.1-SNAPSHOT</version>
10+
<version>10.1</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
@@ -23,7 +23,7 @@ public final class Prop {
2323
/** Project name. */
2424
public static final String NAME = "BaseX";
2525
/** Code version (may contain major, minor and optional patch number). */
26-
public static final String VERSION = version("10.1 RC1");
26+
public static final String VERSION = version("10.1");
2727

2828
/** Project name. */
2929
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>10.1-SNAPSHOT</version>
10+
<version>10.1</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>10.1-SNAPSHOT</version>
10+
<version>10.1</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>10.1-SNAPSHOT</version>
8+
<version>10.1</version>
99
<packaging>pom</packaging>
1010

1111
<distributionManagement>

0 commit comments

Comments
 (0)