This is an automated email from the ASF dual-hosted git repository. juanpablo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jspwiki.git
commit f07c919bd458c72f9ec736e4ea9a88c6d504ac29 Author: juanpablo <[email protected]> AuthorDate: Sat Oct 12 14:08:07 2019 +0200 2.11.0-M6-git-02 --- ChangeLog | 13 ++++++++++++- jspwiki-main/src/main/java/org/apache/wiki/Release.java | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9bc95bc..12ec2a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,21 @@ +2019-12-10 Juan Pablo Santos (juanpablo AT apache DOT org) + + * 2.11.0-M6-git-02 + + * FileUtils.copyContents( InputStream, OutputStream ) enforces writes to disk for FileOutputStream through + their associated FileDescriptor. + + * new static methods to build TestEngine instances which do not throw checked Exceptions and thus allows + TestEngine instances to be built as member of test classes, instead of rebuilding for every test and saving + some time in the process. + 2019-10-10 Juan Pablo Santos (juanpablo AT apache DOT org) * 2.11.0-M6-git-01 * Introduce Awaitility to speed up tests formerly relaying on Thread.sleep(..) - * LuceneSearchProvider now uses an Executor to increase performance on searches + * LuceneSearchProvider now uses an Executor to increase performance on searches. 2019-12-09 Dirk Frederickx (brushed AT apache DOT org) diff --git a/jspwiki-main/src/main/java/org/apache/wiki/Release.java b/jspwiki-main/src/main/java/org/apache/wiki/Release.java index e9d28f9..6359706 100644 --- a/jspwiki-main/src/main/java/org/apache/wiki/Release.java +++ b/jspwiki-main/src/main/java/org/apache/wiki/Release.java @@ -72,7 +72,7 @@ public final class Release { * <p> * If the build identifier is empty, it is not added. */ - public static final String BUILD = "git-01"; + public static final String BUILD = "git-02"; /** * This is the generic version string you should use when printing out the version. It is of
