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 453c2a4f33df13da79df18668fa996dafe3d207b Author: juanpablo <[email protected]> AuthorDate: Thu Dec 19 23:10:27 2019 +0100 2.11.0-M7-git-01 --- ChangeLog.md | 9 +++++++++ jspwiki-main/src/main/java/org/apache/wiki/Release.java | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 953de74..b70ff72 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -17,6 +17,15 @@ specific language governing permissions and limitations under the License. --> +**2019-12-19 Juan Pablo Santos (juanpablo AT apache DOT org)** + +* _2.11.0-M7-git-01_ + +* [JSPWIKI-120](https://issues.apache.org/jira/browse/JSPWIKI-120): Separate rendering engine from core + * `PageRenamer` renamed as `WikiPageRenamer`, with new `PageRenamer` extracted as interface of `WikiPageRenamer` + * `pageRename(..)` method deleted from `WikiEngine`, use the one located on `PageRenamer` + * custom `PageRenamer`s should also fire the appropiate `WikiPageRenameEvent` on `pageRename(..)` method + **2019-12-06 Juan Pablo Santos (juanpablo AT apache DOT org)** * _2.11.0-M6-git-05_ 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 70f12ba..3fea463 100644 --- a/jspwiki-main/src/main/java/org/apache/wiki/Release.java +++ b/jspwiki-main/src/main/java/org/apache/wiki/Release.java @@ -52,7 +52,7 @@ public final class Release { * <p> * If the POSTFIX is empty, it is not added to the version string. */ - private static final String POSTFIX = "M6"; + private static final String POSTFIX = "M7"; /** The JSPWiki major version. */ public static final int VERSION = 2; @@ -72,7 +72,7 @@ public final class Release { * <p> * If the build identifier is empty, it is not added. */ - public static final String BUILD = ""; + public static final String BUILD = "git-01"; /** * This is the generic version string you should use when printing out the version. It is of
