Skip to content

Commit ee51eb7

Browse files
Version 8.2 (May 21, 2015)
1 parent 1f533d2 commit ee51eb7

File tree

7 files changed

+32
-6
lines changed

7 files changed

+32
-6
lines changed

CHANGELOG

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
VERSION 8.2 (May 21, 2015) ---------------------------------------------
2+
3+
XQUERY
4+
- much faster sequence modification via finger trees
5+
- improved compliance with XQuery 3.1
6+
7+
DBA
8+
- open, save and delete queries
9+
- better Tomcat support
10+
11+
STORAGE
12+
- updatable index structures: reduced disk space consumption
13+
14+
XQUERY FUNCTIONS
15+
- Standard Module: fn:json-to-xml, fn:xml-to-json
16+
- Web Module: web:encode-url, web:decode-url
17+
- File Module: file:is-absolute, file:resolve-path
18+
- Admin Module: admin:delete-logs
19+
- Database Module: db:output-cache
20+
21+
BUG FIXES
22+
- locking, full-text requests, stemming
23+
24+
REMOVED FEATURES
25+
- event handling (will be replaced by database triggers)
26+
127
VERSION 8.1.1 (April 16, 2015) -----------------------------------------
228

329
Various bug fixes (all minor)

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>8.2-SNAPSHOT</version>
10+
<version>8.2</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>8.2-SNAPSHOT</version>
10+
<version>8.2</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
@@ -42,7 +42,7 @@ private Prop() { }
4242
/** Project name. */
4343
public static final String NAME = "BaseX";
4444
/** Code version (may contain major, minor and optional patch number). */
45-
public static final String VERSION = version("8.2 beta");
45+
public static final String VERSION = version("8.2");
4646
/** Main author. */
4747
public static final String AUTHOR = "Christian Gr\u00FCn";
4848
/** Co-authors (1). */

basex-examples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.basex</groupId>
1010
<artifactId>basex-parent</artifactId>
11-
<version>8.2-SNAPSHOT</version>
11+
<version>8.2</version>
1212
<relativePath>..</relativePath>
1313
</parent>
1414

basex-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.basex</groupId>
1010
<artifactId>basex-parent</artifactId>
11-
<version>8.2-SNAPSHOT</version>
11+
<version>8.2</version>
1212
<relativePath>..</relativePath>
1313
</parent>
1414

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>8.2-SNAPSHOT</version>
8+
<version>8.2</version>
99
<packaging>pom</packaging>
1010

1111
<modules>

0 commit comments

Comments
 (0)