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 be1f8318c22bbda8043c29e619b67b35134b9409 Author: juanpablo <[email protected]> AuthorDate: Mon Mar 16 22:56:55 2020 +0100 2.11.0-M7-git-13 --- ChangeLog.md | 17 +++++++++++++++++ .../src/main/java/org/apache/wiki/api/Release.java | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 7737012..33541aa 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -17,6 +17,23 @@ specific language governing permissions and limitations under the License. --> +**2020-03-16 Juan Pablo Santos (juanpablo AT apache DOT org)** + +* _2.11.0-M7-git-13_ + +* [JSPWIKI-303](https://issues.apache.org/jira/browse/JSPWIKI-303): JSPWiki-API library creation + * Extracted `jspwiki-event` and `jspwiki-api` maven modules from `jspwiki-main` + * Created `jspwiki-210-adapters` and `jspwiki-210-test-adaptees` maven modules to ensure backwards + compatibility with custom plugin / filters / page providers not using public API + * JSPWiki Plugins, Filters and Page Providers are using the public API + * Use of `o.a.w.api.core.Command` instead of `o.a.w.ui.Command` and of `o.a.w.api.search.QueryItem` and + `o.a.w.api.search.SearchResult` instead of their counterparts from the `o.a.w.search` package + * Start to introduce `Page`, `Attachment` and `Context` instead of `WikiPage`, `WikiAttachment` and `WikiContext` + * JSPWiki API still needs some polishing + * `Page` does not deal with ACLs yet + * SPI to create objects from the `o.a.w.api.core` package still needs to be done + * `WikiPageProvider` and `WikiAttachmentProvider` backwards compatibility still needs to be done + **2020-03-06 Juan Pablo Santos (juanpablo AT apache DOT org)** * _2.11.0-M7-git-12_ diff --git a/jspwiki-api/src/main/java/org/apache/wiki/api/Release.java b/jspwiki-api/src/main/java/org/apache/wiki/api/Release.java index 995eab0..4862f62 100644 --- a/jspwiki-api/src/main/java/org/apache/wiki/api/Release.java +++ b/jspwiki-api/src/main/java/org/apache/wiki/api/Release.java @@ -69,7 +69,7 @@ public final class Release { * <p> * If the build identifier is empty, it is not added. */ - public static final String BUILD = "git-12"; + public static final String BUILD = "git-13"; /** * This is the generic version string you should use when printing out the version. It is of
