Skip to content

Commit

Permalink
BaseX 8.6.4 (May 18, 2017)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianGruen committed May 18, 2017
1 parent 1d744f5 commit 3791100
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
VERSION 8.6.4 (May 18, 2017) -------------------------------------------

Bug fixes (one critical), various performance tweaks.

VERSION 8.6.3 (April 6, 2017) ------------------------------------------

Bug fixes, performance enhancements.
Expand Down
2 changes: 1 addition & 1 deletion basex-api/etc/basexhttp.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ setLocal EnableDelayedExpansion

REM Path to core and library classes
set MAIN=%~dp0/..
set CP=%MAIN%/target/classes;%MAIN%/lib/*;%MAIN%/../basex-core/lib/*
set CP=%MAIN%/target/classes;%MAIN%/lib/*;%MAIN%/lib/custom/*;%MAIN%/../basex-core/lib/*

REM Options for virtual machine
set BASEX_JVM=-Xmx1400m %BASEX_JVM%
Expand Down
2 changes: 1 addition & 1 deletion basex-api/etc/basexhttpstop.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ setLocal EnableDelayedExpansion

REM Path to core and library classes
set MAIN=%~dp0/..
set CP=%MAIN%/target/classes;%MAIN%/lib/*;%MAIN%/../basex-core/lib/*
set CP=%MAIN%/target/classes;%MAIN%/lib/*;%MAIN%/lib/custom/*;%MAIN%/../basex-core/lib/*

REM Run code
java -cp "%CP%" %BASEX_JVM% org.basex.BaseXHTTP %* stop
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>8.6.4-SNAPSHOT</version>
<version>8.6.4</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion basex-core/etc/basex.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ setLocal EnableDelayedExpansion

REM Path to core and library classes
set MAIN=%~dp0/..
set CP=%MAIN%/target/classes;%MAIN%/lib/*
set CP=%MAIN%/target/classes;%MAIN%/lib/*;%MAIN%/lib/custom/*

REM Options for virtual machine
set BASEX_JVM=-Xmx1400m %BASEX_JVM%
Expand Down
2 changes: 1 addition & 1 deletion basex-core/etc/basexclient.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ setLocal EnableDelayedExpansion

REM Path to core and library classes
set MAIN=%~dp0/..
set CP=%MAIN%/target/classes;%MAIN%/lib/*
set CP=%MAIN%/target/classes;%MAIN%/lib/*;%MAIN%/lib/custom/*

REM Run code
java -cp "%CP%" %BASEX_JVM% org.basex.BaseXClient %*
2 changes: 1 addition & 1 deletion basex-core/etc/basexgui.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ setLocal EnableDelayedExpansion

REM Path to core and library classes
set MAIN=%~dp0/..
set CP=%MAIN%/target/classes;%MAIN%/lib/*
set CP=%MAIN%/target/classes;%MAIN%/lib/*;%MAIN%/lib/custom/*

REM Options for virtual machine
set BASEX_JVM=-Xmx1400m %BASEX_JVM%
Expand Down
2 changes: 1 addition & 1 deletion basex-core/etc/basexserver.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ setLocal EnableDelayedExpansion

REM Path to core and library classes
set MAIN=%~dp0/..
set CP=%MAIN%/target/classes;%MAIN%/lib/*
set CP=%MAIN%/target/classes;%MAIN%/lib/*;%MAIN%/lib/custom/*

REM Options for virtual machine
set BASEX_JVM=-Xmx1400m %BASEX_JVM%
Expand Down
2 changes: 1 addition & 1 deletion basex-core/etc/basexserverstop.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ setLocal EnableDelayedExpansion

REM Path to core and library classes
set MAIN=%~dp0/..
set CP=%MAIN%/target/classes;%MAIN%/lib/*
set CP=%MAIN%/target/classes;%MAIN%/lib/*;%MAIN%/lib/custom/*

REM Run code
java -cp "%CP%" %BASEX_JVM% org.basex.BaseXServer %* stop
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>8.6.4-SNAPSHOT</version>
<version>8.6.4</version>
<relativePath>..</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
public final class FileExists extends FileFn {
@Override
public Item item(final QueryContext qc) throws QueryException {
System.out.println("? " + toPath(0, qc));

This comment has been minimized.

Copy link
@LeoWoerteler

LeoWoerteler May 19, 2017

Member

This comment has been minimized.

Copy link
@ChristianGruen

ChristianGruen May 19, 2017

Author Member

O(h)!

return Bln.get(Files.exists(toPath(0, qc)));
}
}
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 @@ -45,7 +45,7 @@ public final class Prop {
/** Project name. */
public static final String NAME = "BaseX";
/** Code version (may contain major, minor and optional patch number). */
public static final String VERSION = version("8.6.4 beta");
public static final String VERSION = version("8.6.4");
/** Main author. */
public static final String AUTHOR = "Christian Gr\u00FCn";
/** Co-authors (1). */
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>8.6.4-SNAPSHOT</version>
<version>8.6.4</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>8.6.4-SNAPSHOT</version>
<version>8.6.4</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>8.6.4-SNAPSHOT</version>
<version>8.6.4</version>
<packaging>pom</packaging>

<modules>
Expand Down

0 comments on commit 3791100

Please sign in to comment.