You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2016/01/02 07:48:31 UTC

[1/2] isis git commit: ISIS-1243: updating docs for release

Repository: isis
Updated Branches:
  refs/heads/release-1.11.0-RC1 4850872d5 -> 0f92613ed


http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgsvc_spi_UrlEncodingService.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgsvc_spi_UrlEncodingService.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgsvc_spi_UrlEncodingService.adoc
index e96b045..d5e53df 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgsvc_spi_UrlEncodingService.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgsvc_spi_UrlEncodingService.adoc
@@ -1,12 +1,12 @@
 [[_rgsvc_spi_UrlEncodingService]]
-= `UrlEncodingService` (`1.11.0-SNAPSHOT`)
+= `UrlEncodingService`
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/
 
 
 
-The `UrlEncodingService` (`1.11.0-SNAPSHOT`) defines a consistent way to convert strings to/from a form safe for use
+The `UrlEncodingService` defines a consistent way to convert strings to/from a form safe for use
 within a URL.  The service is used by the framework to map xref:ugbtb.adoc#_ugbtb_view-models[view model]
 mementos (derived from the state of the view model itself) into a form that can be used as a view model.  When the
 framework needs to recreate the view model (for example to invoke an action on it), this URL is converted back into a

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_tg_pet-clinic.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_tg_pet-clinic.adoc b/adocs/documentation/src/main/asciidoc/guides/_tg_pet-clinic.adoc
index 04426c6..03342b1 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_tg_pet-clinic.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_tg_pet-clinic.adoc
@@ -62,7 +62,7 @@ Run the simpleapp archetype to build an empty Isis application:
 mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.10.0 \
+    -D archetypeVersion=1.11.0 \
     -D groupId=com.mycompany \
     -D artifactId=petclinic \
     -D version=1.0-SNAPSHOT \

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_tg_stop-scaffolding-start-coding.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_tg_stop-scaffolding-start-coding.adoc b/adocs/documentation/src/main/asciidoc/guides/_tg_stop-scaffolding-start-coding.adoc
index 6b7ade3..56d951f 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_tg_stop-scaffolding-start-coding.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_tg_stop-scaffolding-start-coding.adoc
@@ -30,7 +30,7 @@ Run the simpleapp archetype to build an empty Isis application:
 mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.10.0 \
+    -D archetypeVersion=1.11.0 \
     -D groupId=com.mycompany \
     -D artifactId=myapp \
     -D version=1.0-SNAPSHOT \

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugbtb_i18n.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugbtb_i18n.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugbtb_i18n.adoc
index de14fe7..d24faff 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugbtb_i18n.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugbtb_i18n.adoc
@@ -9,7 +9,7 @@ Apache Isis' support for internationlization (i18n) allows every element of the
 
 It also supports translations of messages raised imperatively, by which we mean as the result of a call to `title()` to obtain an object's title, or messages resulting from any business rule violations (eg xref:rgcms.adoc#_rgcms_methods_prefixes_disable[`disable...()`] or xref:rgcms.adoc#_rgcms_methods_prefixes_validate[`validate...()`], and so on.
 
-(As of `1.11.0-SNAPSHOT`), the xref:ugvw.adoc#[Wicket viewer] (that is, its labels and messages) is also internationalized using the same mechanism.  If no translations are available, then the Wicket viewer falls back to using Wicket resource bundles.
+The xref:ugvw.adoc#[Wicket viewer] (that is, its labels and messages) is also internationalized using the same mechanism.  If no translations are available, then the Wicket viewer falls back to using Wicket resource bundles.
 
 Isis does not translate the values of your domain objects, though.  So, if you have a domain concept such as `Country` whose name is intended to be localized according to the current user, you will need to model this yourself.
 
@@ -221,9 +221,9 @@ public interface TranslatableException {
 
 
 [[_ugbtb_i18n_wicket-viewer]]
-== Wicket Viewer (`1.11.0-SNAPSHOT`)
+== Wicket Viewer
 
-(As of `1.11.0-SNAPSHOT`), the xref:ugvw.adoc#[Wicket viewer] (its labels and messages) is also internationalized using
+The xref:ugvw.adoc#[Wicket viewer] (its labels and messages) is also internationalized using
 the `TranslationService`.  This is done through an Isis-specific implementation of the Wicket framework's `org.apache.wicket.Localizer` class, namely `LocalizerForIsis`.
 
 The Wicket `Localizer` defines the following API:

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugbtb_other-techniques_overriding-jdo-annotations.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugbtb_other-techniques_overriding-jdo-annotations.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugbtb_other-techniques_overriding-jdo-annotations.adoc
index ffada22..7f23e52 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugbtb_other-techniques_overriding-jdo-annotations.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugbtb_other-techniques_overriding-jdo-annotations.adoc
@@ -43,7 +43,7 @@ This file should be placed can be placed in `src/main/java/META-INF` within your
 
 [TIP]
 ====
-(As of `1.11.0-SNAPSHOT`) you can use a mixin action on xref:rgcms.adoc#_rgcms_classes_mixins_Persistable[`Persistable`] mixin
+You can use a mixin action on xref:rgcms.adoc#_rgcms_classes_mixins_Persistable[`Persistable`] mixin
 to download the JDO class metadata in XML form.
 ====
 
@@ -58,7 +58,7 @@ For example, in writing up the above example we found that writing `schema=&quot
 
 * As of 1.9.0 Apache Isis will automatically (attempt) to create the owning schema for a given table if it does not exist. This behaviour can be customized, as described in the section on xref:_ugbtb_decoupling_db-schemas[using modules].
 
-* You may need to override the entire class metadata rather than individual elements; the mixin (`1.11.0-SNAPSHOT`) mentioned above can help here.
+* You may need to override the entire class metadata rather than individual elements; the mixin mentioned above can help here.
 ====
 
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_jaxb.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_jaxb.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_jaxb.adoc
index be0d561..0e72233 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_jaxb.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_jaxb.adoc
@@ -1,5 +1,5 @@
 [[_ugbtb_view-models_jaxb]]
-= JAXB-annotated DTOs (`1.11.0-SNAPSHOT`)
+= JAXB-annotated DTOs
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_programming-model.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_programming-model.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_programming-model.adoc
index 59a62b3..11be3f0 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_programming-model.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_programming-model.adoc
@@ -69,7 +69,7 @@ public class ExcelUploadManager implements ViewModel {
 |Implement xref:rgcms.adoc#_rgcms_classes_super_ViewModel[`ViewModel`] interface.  The memento is as defined by the
 interface's methods: the programmer has full control (but also full responsibility) for the string memento.
 
-|DTO (`1.11.0-SNAPSHOT`)
+|DTO
 |
 [source,java]
 ----

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_use-cases.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_use-cases.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_use-cases.adoc
index d92e80d..319ed66 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_use-cases.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugbtb_view-models_use-cases.adoc
@@ -92,7 +92,7 @@ go).  Then, identify if there any view models that could be introduced which wou
 with the system (perhaps automating several related use cases together).
 ****
 
-== DTOs (`1.11.0-SNAPSHOT`)
+== DTOs
 
 DTOs (data transfer objects) are simple classes that (according to link:https://en.wikipedia.org/wiki/Data_transfer_object[wikipedia]) "carries data between processes".
 
@@ -107,7 +107,7 @@ In such cases, exposing domain entities over xref:ugvro.adoc#[RestfulObjects] wo
 easily changed by the producer.
 
 Instead, a view model can be defined to act as a DTO.  To put this formal contract onto a solid footing, this view
-model can (as of `1.11.0-SNAPSHOT`) simply be defined as a JAXB-annotated entity; this allows the consumer to obtain
+model can simply be defined as a JAXB-annotated entity; this allows the consumer to obtain
 the DTO in XML format along with a corresponding XSD schema describing the structure of that XML.  These XML
 representations can be surfaced by the xref:ugvro.adoc#[RestfulObjects viewer] (by implementing
 the xref:rgsvc.adoc#_rgsvc_spi_ContentMappingService[`ContentMappingService`]); the XSD can be obtained

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugbtb_web-xml.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugbtb_web-xml.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugbtb_web-xml.adoc
index ba23478..b18a2e4 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugbtb_web-xml.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugbtb_web-xml.adoc
@@ -401,8 +401,8 @@ The `IsisSessionFilter` is responsible for the (persistence) session management;
 </filter>
 ----
 <1> pluggable strategy for determining what the authentication session (credentials) are of the request
-<2> what the servlet should do if no existing session was found.  Usual values are either `unauthorized`, `basicAuthChallenge` or `auto` (`1.11.0-SNAPSHOT`).  Discussed in more detail below.
-<3> (`1.11.0-SNAPSHOT`), specify which URIs to ignore and simply passthru.  Originally introduced to allow the SwaggerSpec resource (which does not require a session) to be invoked.
+<2> what the servlet should do if no existing session was found.  Usual values are either `unauthorized`, `basicAuthChallenge` or `auto`.  Discussed in more detail below.
+<3> specify which URIs to ignore and simply passthru.  Originally introduced to allow the `SwaggerSpec` resource (which does not require a session) to be invoked.
 <4> List of paths that are allowed through even if not authenticated.  The servlets mapped to these paths are expected to be able to deal with there being no session. Typically they will be logon pages.  See below for further details.
 <5> where to redirect to if an exception occurs.
 
@@ -411,7 +411,7 @@ The `whenNoSession` parameter determines what the behaviour should be if no exis
 
 * `unauthorized` will generates a 401 response
 * `basicAuthChallenge` will also generate a 401 response, and also issues a Basic Auth challenge using `WWW-Authenticate` response header
-* `auto` (`1.11.0-SNAPSHOT`) combines the `unauthorized` and `basicAuthChallenge` strategies: it will generate a 401 response, but only issues a Basic Auth challenge if it detects that the request originates from a web browser (ie that the HTTP `Accept` header is set to `text/html`).  This means that custom Javascript apps can perform their authentication correctly, while the REST API can still be explored using the web browser (relying upon the web browser's in-built support for HTTP Basic Auth).
+* `auto` combines the `unauthorized` and `basicAuthChallenge` strategies: it will generate a 401 response, but only issues a Basic Auth challenge if it detects that the request originates from a web browser (ie that the HTTP `Accept` header is set to `text/html`).  This means that custom Javascript apps can perform their authentication correctly, while the REST API can still be explored using the web browser (relying upon the web browser's in-built support for HTTP Basic Auth).
 * `continue`, in which case the request is allowed to continue but the destination expected to know that there will be no open session
 * `restricted`, which allows access to a restricted list of URLs, otherwise will redirect to the first of that list of URLs
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugfun_core-concepts_building-blocks.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugfun_core-concepts_building-blocks.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugfun_core-concepts_building-blocks.adoc
index 99a96d1..8d47f44 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugfun_core-concepts_building-blocks.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugfun_core-concepts_building-blocks.adoc
@@ -277,7 +277,7 @@ NOTE: TODO; see xref:rgcms.adoc#_rgcms_classes_domainevent[domain event] classes
 
 
 
-=== UI Events (`1.11.0-SNAPSHOT`)
+=== UI Events
 
 NOTE: TODO; see xref:rgcms.adoc#_rgcms_classes_uievent[UI event] classes.
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugfun_getting-started_simpleapp-archetype.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugfun_getting-started_simpleapp-archetype.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugfun_getting-started_simpleapp-archetype.adoc
index 336f7fc..77342fb 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugfun_getting-started_simpleapp-archetype.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugfun_getting-started_simpleapp-archetype.adoc
@@ -22,7 +22,7 @@ To build the app from the latest stable release, then run the following command:
 mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.10.0 \
+    -D archetypeVersion=1.11.0 \
     -D groupId=com.mycompany \
     -D artifactId=myapp \
     -D version=1.0-SNAPSHOT \
@@ -47,7 +47,7 @@ The process is almost identical to that for stable releases, however the `archet
 mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.11.0-SNAPSHOT \
+    -D archetypeVersion=1.12.0-SNAPSHOT \
     -D groupId=com.mycompany \
     -D artifactId=myapp \
     -D version=1.0-SNAPSHOT \

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugsec_usage-by-isis-viewers.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugsec_usage-by-isis-viewers.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugsec_usage-by-isis-viewers.adoc
index c502fe2..ed0f10a 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugsec_usage-by-isis-viewers.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugsec_usage-by-isis-viewers.adoc
@@ -122,8 +122,8 @@ The strategy is configured in `web.xml`; for example:
 </filter>
 ----
 <1> configure basic auth strategy
-<2> what to do if no session was found; we use `auto` (`1.11.0-SNAPSHOT`) so as to issue a 401 status code with basic authentication challenge if the request originated from a web browser.  (Prior to `1.11.0-SNAPSHOT` this parameter was set either to `basicAuthChallenge` (which works when requested from web browser) or to `unauthorized` (which works when requested from a suitably coded custom Javascript app).
-<3> (`1.11.0-SNAPSHOT`) which paths are allowed to be accessed directly, without a session.  The `/restful/swagger` path provides access to the SwaggerResource that dynamically generates swagger spec files from the Apache Isis metamodel.
+<2> what to do if no session was found; we use `auto` so as to issue a 401 status code with basic authentication challenge if the request originated from a web browser.  (Prior to `1.11.0` this parameter was set either to `basicAuthChallenge` (which works when requested from web browser) or to `unauthorized` (which works when requested from a suitably coded custom Javascript app).
+<3> which paths are allowed to be accessed directly, without a session.  The `/restful/swagger` path provides access to the SwaggerResource that dynamically generates swagger spec files from the Apache Isis metamodel.
 
 
 The above filter must then be chained before the servlet that actually handles the REST requests:

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugvro_architecture.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugvro_architecture.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugvro_architecture.adoc
index 4d8ef00..ea1838e 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugvro_architecture.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugvro_architecture.adoc
@@ -33,8 +33,7 @@ xref:rgsvc.adoc#_rgsvc_spi_ContentNegotiationService[`ContentNegotiationService`
 HTTP `Accept` header.  If the implementation does not recognize the value of the header, if can simply return `null`. +
 +
 The framework provides a number of implementations; an implementation that handles the
-xref:ugvro.adoc#_ugvro_simplified-representations[simplified representation] of the Apache Isis profile
-(`1.11.0-SNAPSHOT`); an implementation that provides support for the `x-ro-domain-type` parameter, and a
+xref:ugvro.adoc#_ugvro_simplified-representations[simplified representation] of the Apache Isis profile; an implementation that provides support for the `x-ro-domain-type` parameter, and a
 default/fallback implementation that returns the representations defined by the RO spec.
 
 * `ContentMappingService` +

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugvro_configuration-properties.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugvro_configuration-properties.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugvro_configuration-properties.adoc
index 8397236..36f3318 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugvro_configuration-properties.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugvro_configuration-properties.adoc
@@ -32,8 +32,7 @@ The following configuration properties are supported:
 |A mechanism for reducing the number of round-trips by eagerly rendering collections; discussed xref:ugvro.adoc#_ugvro_ro-spec_extensions_minimizing-round-trips_honor-ui-hints[here].
 
 |`isis.viewer.restfulobjects.` +
-`strictAcceptChecking` +
-(`1.11.0-SNAPSHOT`)
+`strictAcceptChecking`
 | `true`,`false` (`_false_`)
 |Whether to strictly enforce the `Accept` header checking for the default RO-spec representations (by the
 `ContentNegotiationServiceForRestfulObjectsV1_0` service). Will otherwise accept anything.  +
@@ -51,7 +50,7 @@ handful of resources that supported that profile.
 There are also a number of configuration properties that can be used to suppress or simplify the default RO-spec
 representations.
 
-These configuration properties pre-date the support, introduced in `1.11.0-SNAPSHOT`, for the Apache Isis profile, and
+These configuration properties pre-date the support, introduced in `1.11.0`, for the Apache Isis profile, and
 are limited by the fact that they are global configuration settings, so cannot be influenced on a request-by-request
 basis (as is the case with the `Accept` header used for the Apache Isis profile). They have therefore been
 deprecated, and may be removed in the future.

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugvro_simplified-representations.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugvro_simplified-representations.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugvro_simplified-representations.adoc
index de75ce6..c215f71 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugvro_simplified-representations.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugvro_simplified-representations.adoc
@@ -14,7 +14,7 @@ link:http://vitalets.github.io/angular-xeditable/[Angular XEditable],
 link:https://github.com/mgcrea/angular-strap[Angular Strap].
 
 
-As of `1.11.0-SNAPSHOT`, Apache Isis provides support for its own simplified representation for the most commonly-used
+As of `1.11.0`, Apache Isis provides support for its own simplified representation for the most commonly-used
 representations.  This is implemented using the `ContentNegotiationService` described in the
 xref:ugvro.adoc#_ugvro_architecture[architecture] chapter.
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_ugvro_simplified-representations_configuration-properties.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ugvro_simplified-representations_configuration-properties.adoc b/adocs/documentation/src/main/asciidoc/guides/_ugvro_simplified-representations_configuration-properties.adoc
index 4b44713..ed762b5 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ugvro_simplified-representations_configuration-properties.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ugvro_simplified-representations_configuration-properties.adoc
@@ -8,7 +8,7 @@
 If all that is required is a very simple representations (of objects), you can configure the Restful Objects viewer
 to provide a simplified output, then this can be done with a number of (global) configuration properties.
 
-These configuration properties pre-date the support, introduced in `1.11.0-SNAPSHOT`, for the Apache Isis profile, and
+These configuration properties pre-date the support, introduced in `1.11.0`, for the Apache Isis profile, and
 are limited by the fact that they are global configuration settings, so cannot be influenced on a request-by-request
 basis (as is the case with the `Accept` header used for the Apache Isis profile). They have therefore been
 deprecated, and may be removed in the future.

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/rgcms.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/rgcms.adoc b/adocs/documentation/src/main/asciidoc/guides/rgcms.adoc
index 253c5fa..92dc334 100644
--- a/adocs/documentation/src/main/asciidoc/guides/rgcms.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/rgcms.adoc
@@ -14,7 +14,7 @@ reserved and prefix xref:rgcms.adoc#_rgcms_methods[methods] (such as `title()` a
 supporting xref:rgcms.adoc#_rgcms_classes[classes].
 
 It also describes the xref:rgcms.adoc#_rgcms_schema[XSD schema] defined by Apache Isis.  One use case is for the
-JAXB serialization of view models (`1.11.0-SNAPSHOT`).
+JAXB serialization of view models.
 
 === Other Guides
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/simpleapp-archetype.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/simpleapp-archetype.adoc b/adocs/documentation/src/main/asciidoc/guides/simpleapp-archetype.adoc
index 5aa2ba1..9954b39 100644
--- a/adocs/documentation/src/main/asciidoc/guides/simpleapp-archetype.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/simpleapp-archetype.adoc
@@ -25,7 +25,7 @@ Then run the following command:
 mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.10.0 \
+    -D archetypeVersion=1.11.0 \
     -D groupId=com.mycompany \
     -D artifactId=myapp \
     -D version=1.0-SNAPSHOT \
@@ -54,7 +54,7 @@ The process is almost identical to that for stable releases, however the `archet
 mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.11.0-SNAPSHOT \
+    -D archetypeVersion=1.12.0-SNAPSHOT \
     -D groupId=com.mycompany \
     -D artifactId=myapp \
     -D version=1.0-SNAPSHOT \

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/index.html
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/index.html b/adocs/documentation/src/main/asciidoc/index.html
index f7b0ffb..c6f0ca8 100644
--- a/adocs/documentation/src/main/asciidoc/index.html
+++ b/adocs/documentation/src/main/asciidoc/index.html
@@ -664,7 +664,7 @@
 mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.10.0 \
+    -D archetypeVersion=1.11.0 \
     -D groupId=com.mycompany \
     -D artifactId=myapp \
     -D version=1.0-SNAPSHOT \

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/release-notes.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/release-notes.adoc b/adocs/documentation/src/main/asciidoc/release-notes.adoc
index 3d2f0ca..5a543f1 100644
--- a/adocs/documentation/src/main/asciidoc/release-notes.adoc
+++ b/adocs/documentation/src/main/asciidoc/release-notes.adoc
@@ -22,7 +22,7 @@ This table summarises all releases of Apache Isis to date.
 | Bugs
 
 | xref:r1.11.0[1.11.0]
-| xx-xxx-20xx
+| 02-jan-2016
 | * https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311171&version=12333974[1.11.0]
 | Combined release notes for core and simpleapp-archetype.
 | 9
@@ -210,6 +210,7 @@ This table summarises all releases of Apache Isis to date.
 
 
 
+include::_release-notes_1.11.0.adoc[leveloffset=+1]
 include::_release-notes_1.10.0.adoc[leveloffset=+1]
 include::_release-notes_1.9.0.adoc[leveloffset=+1]
 include::_release-notes_1.8.0.adoc[leveloffset=+1]


[2/2] isis git commit: ISIS-1243: updating docs for release

Posted by da...@apache.org.
ISIS-1243: updating docs for release


Project: http://git-wip-us.apache.org/repos/asf/isis/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/0f92613e
Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/0f92613e
Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/0f92613e

Branch: refs/heads/release-1.11.0-RC1
Commit: 0f92613edd641070c413244428ca544dbb81a52e
Parents: 4850872
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Sat Jan 2 06:48:08 2016 +0000
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Sat Jan 2 06:48:08 2016 +0000

----------------------------------------------------------------------
 STATUS                                          |  3 ++
 .../_migration-notes_1.10.0-to-1.11.0.adoc      |  5 ---
 .../main/asciidoc/_release-notes_1.11.0.adoc    |  2 +-
 .../src/main/asciidoc/doap_isis.rdf             | 19 ++++++++++-
 .../src/main/asciidoc/downloads.adoc            | 10 +++---
 .../_cg_committers_cutting-a-release.adoc       | 34 ++++++++++----------
 .../_cg_committers_post-release-successful.adoc | 30 ++++++++---------
 ...cg_committers_post-release-unsuccessful.adoc | 24 +++++++-------
 .../_cg_committers_verifying-releases.adoc      |  2 +-
 .../asciidoc/guides/_cg_isis-maven-plugin.adoc  |  4 +--
 .../guides/_cg_isis-maven-plugin_swagger.adoc   |  4 +--
 .../guides/_cg_isis-maven-plugin_validate.adoc  |  2 +-
 .../guides/_cg_isis-maven-plugin_xsd.adoc       |  4 +--
 .../guides/_rgant-Action_domainEvent.adoc       |  2 +-
 .../guides/_rgant-Collection_domainEvent.adoc   |  2 +-
 .../asciidoc/guides/_rgant-DomainObject.adoc    | 28 +++++++---------
 .../guides/_rgant-DomainObjectLayout.adoc       |  6 ++--
 ...gant-DomainObjectLayout_cssClassUiEvent.adoc |  2 +-
 .../_rgant-DomainObjectLayout_iconUiEvent.adoc  |  2 +-
 .../_rgant-DomainObjectLayout_titleUiEvent.adoc |  2 +-
 ...gant-DomainObject_createdLifecycleEvent.adoc |  2 +-
 ...rgant-DomainObject_loadedLifecycleEvent.adoc |  2 +-
 ...nt-DomainObject_persistedLifecycleEvent.adoc |  2 +-
 ...t-DomainObject_persistingLifecycleEvent.adoc |  2 +-
 ...ant-DomainObject_removingLifecycleEvent.adoc |  2 +-
 ...gant-DomainObject_updatedLifecycleEvent.adoc |  2 +-
 ...ant-DomainObject_updatingLifecycleEvent.adoc |  2 +-
 .../guides/_rgant-Parameter_regexPattern.adoc   |  4 +--
 .../guides/_rgant-Property_domainEvent.adoc     |  2 +-
 .../guides/_rgant-Property_regexPattern.adoc    |  6 ++--
 .../guides/_rgant-XmlJavaTypeAdapter.adoc       |  4 +--
 .../asciidoc/guides/_rgant-XmlRootElement.adoc  |  4 +--
 .../guides/_rgcfg_configuring-core.adoc         | 30 ++++++-----------
 .../guides/_rgcms_classes_roles_Dto.adoc        |  4 +--
 .../_rgcms_classes_roles_Persistable.adoc       |  4 +--
 ..._rgcms_classes_super_AbstractSubscriber.adoc |  2 +-
 .../asciidoc/guides/_rgcms_classes_uievent.adoc |  2 +-
 .../_rgcms_classes_uievent_CssClassUiEvent.adoc |  2 +-
 .../_rgcms_classes_uievent_IconUiEvent.adoc     |  2 +-
 .../_rgcms_classes_uievent_TitleUiEvent.adoc    |  2 +-
 .../src/main/asciidoc/guides/_rgsvc_api.adoc    |  4 +--
 .../guides/_rgsvc_api_EventBusService.adoc      |  2 +-
 .../asciidoc/guides/_rgsvc_api_JaxbService.adoc |  4 +--
 .../guides/_rgsvc_api_SwaggerService.adoc       |  4 +--
 .../guides/_rgsvc_api_XmlSnapshotService.adoc   |  5 ++-
 .../guides/_rgsvc_spi_UrlEncodingService.adoc   |  4 +--
 .../main/asciidoc/guides/_tg_pet-clinic.adoc    |  2 +-
 .../_tg_stop-scaffolding-start-coding.adoc      |  2 +-
 .../src/main/asciidoc/guides/_ugbtb_i18n.adoc   |  6 ++--
 ...r-techniques_overriding-jdo-annotations.adoc |  4 +--
 .../guides/_ugbtb_view-models_jaxb.adoc         |  2 +-
 .../_ugbtb_view-models_programming-model.adoc   |  2 +-
 .../guides/_ugbtb_view-models_use-cases.adoc    |  4 +--
 .../main/asciidoc/guides/_ugbtb_web-xml.adoc    |  6 ++--
 .../_ugfun_core-concepts_building-blocks.adoc   |  2 +-
 ...fun_getting-started_simpleapp-archetype.adoc |  4 +--
 .../guides/_ugsec_usage-by-isis-viewers.adoc    |  4 +--
 .../asciidoc/guides/_ugvro_architecture.adoc    |  3 +-
 .../guides/_ugvro_configuration-properties.adoc |  5 ++-
 .../_ugvro_simplified-representations.adoc      |  2 +-
 ...epresentations_configuration-properties.adoc |  2 +-
 .../src/main/asciidoc/guides/rgcms.adoc         |  2 +-
 .../asciidoc/guides/simpleapp-archetype.adoc    |  4 +--
 .../documentation/src/main/asciidoc/index.html  |  2 +-
 .../src/main/asciidoc/release-notes.adoc        |  3 +-
 65 files changed, 175 insertions(+), 178 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/STATUS
----------------------------------------------------------------------
diff --git a/STATUS b/STATUS
index 19fb90d..ae155ba 100644
--- a/STATUS
+++ b/STATUS
@@ -21,6 +21,9 @@ Description
 
 TLP releases:
 
+  * isis-1.11.0                                    :  2 Jan 2016
+  * simpleapp-archetype-1.11.0                     :  2 Jan 2016
+
   * isis-1.10.0                                    : 10 Nov 2015
   * simpleapp-archetype-1.10.0                     : 10 Nov 2015
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/_migration-notes_1.10.0-to-1.11.0.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/_migration-notes_1.10.0-to-1.11.0.adoc b/adocs/documentation/src/main/asciidoc/_migration-notes_1.10.0-to-1.11.0.adoc
index 1b31335..2ecaaeb 100644
--- a/adocs/documentation/src/main/asciidoc/_migration-notes_1.10.0-to-1.11.0.adoc
+++ b/adocs/documentation/src/main/asciidoc/_migration-notes_1.10.0-to-1.11.0.adoc
@@ -10,11 +10,6 @@ any difficulties then let us know via the link:support.html[users mailing list],
 issues here.
 
 
-[NOTE]
-====
-At the time of writing `1.11.0` has not been released; these notes relate to `1.11.0-SNAPSHOT`.
-====
-
 
 == JAXB view models
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/_release-notes_1.11.0.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/_release-notes_1.11.0.adoc b/adocs/documentation/src/main/asciidoc/_release-notes_1.11.0.adoc
index fdcbd27..156bf84 100644
--- a/adocs/documentation/src/main/asciidoc/_release-notes_1.11.0.adoc
+++ b/adocs/documentation/src/main/asciidoc/_release-notes_1.11.0.adoc
@@ -6,7 +6,7 @@
 :toc: right
 
 
-The main focus for Apache Isis 1.11.0 is on the REST API and also on view models:
+The main focus for Apache Isis 1.11.0 is on the REST API and on view models using JAXB:
 
 * the xref:guides/ugvro.adoc#[Restful Objects viewer] now supports simplified
 representations intended to make it easier to write custom Javascript (and other) clients that consume the REST API;

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/doap_isis.rdf
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/doap_isis.rdf b/adocs/documentation/src/main/asciidoc/doap_isis.rdf
index 19dc82e..5834cf3 100644
--- a/adocs/documentation/src/main/asciidoc/doap_isis.rdf
+++ b/adocs/documentation/src/main/asciidoc/doap_isis.rdf
@@ -36,6 +36,23 @@
     <category rdf:resource="http://projects.apache.org/category/web-framework" />
 
     
+    <!-- 2016-01-02 releases -->
+    <release>
+      <Version>
+        <name>isis</name>
+        <created>2016-01-02</created>
+        <revision>1.11.0</revision>
+      </Version>
+    </release>
+    <release>
+      <Version>
+        <name>simpleapp-archetype</name>
+        <created>2016-01-02</created>
+        <revision>1.11.0</revision>
+      </Version>
+    </release>
+    
+
     <!-- 2015-11-10 releases -->
     <release>
       <Version>
@@ -51,7 +68,7 @@
         <revision>1.10.0</revision>
       </Version>
     </release>
-    
+
 
     <!-- 2015-09-01 releases -->
     <release>

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/downloads.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/downloads.adoc b/adocs/documentation/src/main/asciidoc/downloads.adoc
index 0d0201f..a54662e 100644
--- a/adocs/documentation/src/main/asciidoc/downloads.adoc
+++ b/adocs/documentation/src/main/asciidoc/downloads.adoc
@@ -25,12 +25,12 @@ If you want to build Apache Isis from formally released source tarballs, you can
 
 Core:
 
-* https://www.apache.org/dyn/closer.cgi/isis/isis-core/isis-1.10.0-source-release.zip[isis-1.10.0] (http://www.apache.org/dist/isis/isis-core/isis-1.10.0-source-release.zip.asc[asc], http://www.apache.org/dist/isis/isis-core/isis-1.10.0-source-release.zip.md5[md5])
+* https://www.apache.org/dyn/closer.cgi/isis/isis-core/isis-1.11.0-source-release.zip[isis-1.11.0] (http://www.apache.org/dist/isis/isis-core/isis-1.11.0-source-release.zip.asc[asc], http://www.apache.org/dist/isis/isis-core/isis-1.11.0-source-release.zip.md5[md5])
 
 
 Archetypes:
 
-* https://www.apache.org/dyn/closer.cgi/isis/archetype/simpleapp-archetype/simpleapp-archetype-1.10.0-source-release.zip[simpleapp-archetype-1.10.0] (http://www.apache.org/dist/isis/archetype/simpleapp-archetype/simpleapp-archetype-1.10.0-source-release.zip.asc[asc], http://www.apache.org/dist/isis/archetype/simpleapp-archetype/simpleapp-archetype-1.10.0-source-release.zip.md5[md5])
+* https://www.apache.org/dyn/closer.cgi/isis/archetype/simpleapp-archetype/simpleapp-archetype-1.11.0-source-release.zip[simpleapp-archetype-1.11.0] (http://www.apache.org/dist/isis/archetype/simpleapp-archetype/simpleapp-archetype-1.11.0-source-release.zip.asc[asc], http://www.apache.org/dist/isis/archetype/simpleapp-archetype/simpleapp-archetype-1.11.0-source-release.zip.md5[md5])
 
 
 
@@ -45,7 +45,7 @@ Then verify the signatures using a command such as:
 [source,bash]
 ----
 pgpk -a KEYS
-pgpv isis-1.10.0-source-release.zip.asc
+pgpv isis-1.11.0-source-release.zip.asc
 ----
 
 or
@@ -53,7 +53,7 @@ or
 [source,bash]
 ----
 pgp -ka KEYS
-pgp isis-1.10.0-source-release.zip.asc
+pgp isis-1.11.0-source-release.zip.asc
 ----
 
 
@@ -62,7 +62,7 @@ or
 [source,bash]
 ----
 gpg –import KEYS
-gpg –verify isis-1.10.0-source-release.zip.asc
+gpg –verify isis-1.11.0-source-release.zip.asc
 ----
 
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_cg_committers_cutting-a-release.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_cg_committers_cutting-a-release.adoc b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_cutting-a-release.adoc
index faadb7c..2a454f0 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_cg_committers_cutting-a-release.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_cutting-a-release.adoc
@@ -47,8 +47,8 @@ We use environment variables to parameterize as many of the steps as possible.
 ----
 cd core
 export ISISTMP=/c/tmp              # <1>
-export ISISDEV=1.12.0-SNAPSHOT
-export ISISREL=1.11.0
+export ISISDEV=1.13.0-SNAPSHOT
+export ISISREL=1.12.0
 export ISISRC=RC1
 export ISISBRANCH=release-$ISISREL-$ISISRC
 export ISISJIRA=ISIS-9999          # <2>
@@ -62,7 +62,7 @@ Obviously, alter `$ISISDEV` and `$ISISREL` as required, and bump `$ISISRC` for r
 
 [IMPORTANT]
 ====
-Note that the branch name is *not* the same any of the eventual tag names (eg `isis-1.11.0` or `simpleapp-archetype-1.11.0`).
+Note that the branch name is *not* the same any of the eventual tag names (eg `isis-1.12.0` or `simpleapp-archetype-1.12.0`).
 
 If they did have the same name, then what would happen is that the `maven-release-plugin` would checkout the (HEAD of the) branch and thus upload a SNAPSHOT to the snapshot repository.  What it should of course do is checkout the tag and then upload that to the release staging repository.
 ====
@@ -86,13 +86,13 @@ All release preparation is done locally; if we are successful, this branch will
 
 Double check that the version number of the parent pom should reflect the branch name that you are now on (with a `-SNAPSHOT` suffix).  his will normally have been done already during earlier development; but confirm that it has been updated. If it has not, make the change.
 
-Double check that the version number of the core POM (`core/pom.xml`) should reflect the branch name that you are now on.  For example, if releasing version `1.11.0`, the POM should read:
+Double check that the version number of the core POM (`core/pom.xml`) should reflect the branch name that you are now on.  For example, if releasing version `1.12.0`, the POM should read:
 
 [source,xml]
 ----
 <groupId>org.apache.isis.core</groupId>
 <artifactId>isis</artifactId>
-<version>1.11.0-SNAPSHOT</version>
+<version>1.12.0-SNAPSHOT</version>
 ----
 
 Also, check that there are no snapshot dependencies:
@@ -282,7 +282,7 @@ If there are any snags at this stage, then explicitly delete the generated `rele
 [[_cg_committers_cutting-a-release_releasing-core_post-prepare-sanity-check]]
 === Post-prepare sanity check
 
-You should end up with artifacts in your local repo with the new version (eg `1.11.0`).  This is a good time to do some quick sanity checks; nothing has yet been uploaded:
+You should end up with artifacts in your local repo with the new version (eg `1.12.0`).  This is a good time to do some quick sanity checks; nothing has yet been uploaded:
 
 * unzip the source-release ZIP and check it builds.
 * Inspect the `DEPENDENCIES` file, and check it looks correct.
@@ -338,17 +338,17 @@ The custom `workingDirectory` prevents file path issues if releasing on Windows.
 [INFO] Performing a LOCAL checkout from scm:git:file:///C:\APACHE\isis-git-rw\co
 re
 [INFO] Checking out the project to perform the release ...
-[INFO] Executing: cmd.exe /X /C "git clone --branch release-1.11.0 file:///C:\APACHE\isis-git-rw\core C:\APACHE\isis-git-rw\core\target\checkout"
+[INFO] Executing: cmd.exe /X /C "git clone --branch release-1.12.0 file:///C:\APACHE\isis-git-rw\core C:\APACHE\isis-git-rw\core\target\checkout"
 [INFO] Working directory: C:\APACHE\isis-git-rw\core\target
 [INFO] Performing a LOCAL checkout from scm:git:file:///C:\APACHE\isis-git-rw
 [INFO] Checking out the project to perform the release ...
-[INFO] Executing: cmd.exe /X /C "git clone --branch release-1.11.0 file:///C:\APACHE\isis-git-rw C:\APACHE\isis-git-rw\core\target\checkout"
+[INFO] Executing: cmd.exe /X /C "git clone --branch release-1.12.0 file:///C:\APACHE\isis-git-rw C:\APACHE\isis-git-rw\core\target\checkout"
 [INFO] Working directory: C:\APACHE\isis-git-rw\core\target
 [INFO] Executing: cmd.exe /X /C "git ls-remote file:///C:\APACHE\isis-git-rw"
 [INFO] Working directory: C:\Users\ADMINI~1\AppData\Local\Temp
 [INFO] Executing: cmd.exe /X /C "git fetch file:///C:\APACHE\isis-git-rw"
 [INFO] Working directory: C:\APACHE\isis-git-rw\core\target\checkout
-[INFO] Executing: cmd.exe /X /C "git checkout release-1.11.0"
+[INFO] Executing: cmd.exe /X /C "git checkout release-1.12.0"
 [INFO] Working directory: C:\APACHE\isis-git-rw\core\target\checkout
 [INFO] Executing: cmd.exe /X /C "git ls-files"
 [INFO] Working directory: C:\APACHE\isis-git-rw\core\target\checkout
@@ -401,7 +401,7 @@ Update the parent `pom.xml` to reference the _released_ version of Apache Isis c
 [source,xml]
 ----
 <properties>
-    <isis.version>1.11.0</isis.version>
+    <isis.version>1.12.0</isis.version>
     ...
 </properties>
 ----
@@ -627,7 +627,7 @@ Use the following subject, eg:
 
 [source,bash]
 ----
-[VOTE] Apache Isis Core release 1.11.0 RC1
+[VOTE] Apache Isis Core release 1.12.0 RC1
 ----
 
 And use the following body:
@@ -636,17 +636,17 @@ And use the following body:
 ----
 I've cut a release for Apache Isis Core and the simpleapp archetype:
 
-* Core 1.11.0
-* SimpleApp Archetype 1.11.0
+* Core 1.12.0
+* SimpleApp Archetype 1.12.0
 
 The source code artifacts have been uploaded to staging repositories on repository.apache.org:
 
-* http://repository.apache.org/content/repositories/orgapacheisis-10xx/org/apache/isis/core/isis/1.11.0/isis-1.11.0-source-release.zip
-* http://repository.apache.org/content/repositories/orgapacheisis-10xx/org/apache/isis/archetype/simpleapp-archetype/1.11.0/simpleapp-archetype-1.11.0-source-release.zip
+* http://repository.apache.org/content/repositories/orgapacheisis-10xx/org/apache/isis/core/isis/1.12.0/isis-1.12.0-source-release.zip
+* http://repository.apache.org/content/repositories/orgapacheisis-10xx/org/apache/isis/archetype/simpleapp-archetype/1.12.0/simpleapp-archetype-1.12.0-source-release.zip
 
 For each zip there is a corresponding signature file (append .asc to the zip's url).
 
-In the source code repo the code has been tagged as isis-1.11.0-RC1 and simpleapp-archetype-1.11.0-RC1; see https://git-wip-us.apache.org/repos/asf?p=isis.git
+In the source code repo the code has been tagged as isis-1.12.0-RC1 and simpleapp-archetype-1.12.0-RC1; see https://git-wip-us.apache.org/repos/asf?p=isis.git
 
 For instructions on how to verify the release (build from binaries and/or use in Maven directly), see http://isis.apache.org/guides/cg.html#_cg_committers_verifying-releases
 
@@ -659,7 +659,7 @@ Please verify the release and cast your vote.  The vote will be open for a minim
 
 Remember to update:
 
-* the version number (1.11.0 or whatever)
+* the version number (1.12.0 or whatever)
 * the release candidate number (`RC1` or whatever)
 * the repository id, as provided by Nexus earlier (`orgapacheisis-10xx` or whatever)
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-successful.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-successful.adoc b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-successful.adoc
index 2a914a8..7e87871 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-successful.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-successful.adoc
@@ -25,7 +25,7 @@ Post the results to the `dev@isis.a.o` mailing list:
 
 [source,bash]
 ----
-[RESULT] [VOTE] Apache Isis Core release 1.11.0
+[RESULT] [VOTE] Apache Isis Core release 1.12.0
 ----
 
 using the body (alter last line as appropriate):
@@ -53,8 +53,8 @@ You can do this using the `scripts/promoterctag.sh` script; for example:
 
 [source,bash]
 ----
-sh scripts/promoterctag.sh isis-1.11.0 RC1
-sh scripts/promoterctag.sh simpleapp-archetype-1.11.0 RC1
+sh scripts/promoterctag.sh isis-1.12.0 RC1
+sh scripts/promoterctag.sh simpleapp-archetype-1.12.0 RC1
 ----
 
 
@@ -159,7 +159,7 @@ For example:
 
 [source,bash]
 ----
-sh upd.sh 1.10.0 1.11.0
+sh upd.sh 1.11.0 1.12.0
 ----
 
 The script downloads the artefacts from the Nexus release repository, adds the artefacts to subsversion and deletes the previous version.
@@ -182,7 +182,7 @@ From the root directory, generate the release notes for the current release, in
 
 [source,bash]
 ----
-sh scripts/jira-release-notes.sh ISIS 1.11.0 > /tmp/1
+sh scripts/jira-release-notes.sh ISIS 1.12.0 > /tmp/1
 ----
 
 
@@ -243,14 +243,14 @@ For example, for a release of Apache Isis Core, use the following subject:
 
 [source,bash]
 ----
-[ANN] Apache Isis version 1.11.0 Released
+[ANN] Apache Isis version 1.12.0 Released
 ----
 
 And use the following body (summarizing the main points as required):
 
 [source]
 ----
-The Apache Isis team is pleased to announce the release of Apache Isis v1.11.0.
+The Apache Isis team is pleased to announce the release of Apache Isis v1.12.0.
 
 New features in this release include:
 * ...
@@ -264,8 +264,8 @@ Enjoy!
 
 --The Apache Isis team
 
-[1] http://isis.apache.org/release-notes.html#r1.11.0
-[2] http://isis.apache.org/migration-notes.html#_migration-notes_1.10.0-to-1.11.0
+[1] http://isis.apache.org/release-notes.html#r1.12.0
+[2] http://isis.apache.org/migration-notes.html#_migration-notes_1.11.0-to-1.12.0
 [3] http://search.maven.org
 [4] http://isis.apache.org/downloads.html
 ----
@@ -289,9 +289,9 @@ Because we release from a branch, the changes made in the branch (changes to `po
 ----
 git checkout master                           # update master with latest
 git pull
-git merge release-1.11.0-RC1                  # merge branch onto master
-git branch -d release-1.11.0-RC1              # branch no longer needed
-git push origin --delete release-1.11.0-RC1   # remote branch no longer needed
+git merge release-1.12.0-RC1                  # merge branch onto master
+git branch -d release-1.12.0-RC1              # branch no longer needed
+git push origin --delete release-1.12.0-RC1   # remote branch no longer needed
 ----
 
 
@@ -398,20 +398,20 @@ Using this https://gist.github.com/danhaywood/ff17946ee05652402cfb[gist] to invo
 +
 [source,bash]
 ----
-sh forsub.sh sh bumpver_isis.sh 1.11.0
+sh forsub.sh sh bumpver_isis.sh 1.12.0
 ----
 
 * release to mvn central (contains a sanity check before hand that everything compiles): +
 +
 [source,bash]
 ----
-sh forsub.sh sh release.sh "1.11.0" "1.12.0-SNAPSHOT" "dan@haywood-associates.co.uk" "this is not really my password"
+sh forsub.sh sh release.sh "1.12.0" "1.13.0-SNAPSHOT" "dan@haywood-associates.co.uk" "this is not really my password"
 ----
 
 * update its dependency on Apache Isis to reference the next SNAPSHOT version: +
 +
 [source,bash]
 ----
-sh forsub.sh sh bumpver_isis.sh "1.12.0-SNAPSHOT"
+sh forsub.sh sh bumpver_isis.sh "1.13.0-SNAPSHOT"
 ----
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-unsuccessful.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-unsuccessful.adoc b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-unsuccessful.adoc
index a1aa68f..bf10531 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-unsuccessful.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_post-release-unsuccessful.adoc
@@ -25,7 +25,7 @@ For example, use the following subject for a vote on Apache Isis Core:
 
 [source,bash]
 ----
-[RESULT] [VOTE] Apache Isis Core release 1.11.0
+[RESULT] [VOTE] Apache Isis Core release 1.12.0
 ----
 
 using the body (alter last line as appropriate):
@@ -34,11 +34,11 @@ using the body (alter last line as appropriate):
 ----
 The vote has completed with the following result :
 
-  +1 (binding): <i>list of names</i>
-  +1 (non binding): <i>list of names</i>
+  +1 (binding): _list of names_
+  +1 (non binding): _list of names_
 
-  -1 (binding): <i>list of names</i>
-  -1 (non binding): <i>list of names</i>
+  -1 (binding): _list of names_
+  -1 (non binding): _list of names_
 
 The vote is UNSUCCESSFUL.
 ----
@@ -52,7 +52,7 @@ Tidy up remote branches in the git repo:
 +
 [source,bash]
 ----
-git push --delete origin release-1.11.0-RC1
+git push --delete origin release-1.12.0-RC1
 ----
 
 
@@ -60,8 +60,8 @@ git push --delete origin release-1.11.0-RC1
 +
 [source,bash]
 ----
-git push --delete origin isis-1.11.0-RC1
-git push --delete origin simpleapp-archetype-1.11.0-RC1
+git push --delete origin isis-1.12.0-RC1
+git push --delete origin simpleapp-archetype-1.12.0-RC1
 ----
 
 
@@ -69,10 +69,10 @@ git push --delete origin simpleapp-archetype-1.11.0-RC1
 +
 [source,bash]
 ----
-git tag -d isis-1.11.0
-git tag -d isis-1.11.0-RC1
-git tag -d simpleapp-archetype-1.11.0
-git tag -d simpleapp-archetype-1.11.0-RC1
+git tag -d isis-1.12.0
+git tag -d isis-1.12.0-RC1
+git tag -d simpleapp-archetype-1.12.0
+git tag -d simpleapp-archetype-1.12.0-RC1
 ----
 
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_cg_committers_verifying-releases.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_cg_committers_verifying-releases.adoc b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_verifying-releases.adoc
index 3466ca7..8625a98 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_cg_committers_verifying-releases.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_verifying-releases.adoc
@@ -285,7 +285,7 @@ mvn archetype:generate  \
     -D version=1.0-SNAPSHOT \
     -B \
     -o \
-    -D archetypeVersion=1.11.0   # adjust version as necessary
+    -D archetypeVersion=1.12.0   # adjust version as necessary
 
 cd myapp
 mvn clean install -o

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin.adoc b/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin.adoc
index 33aee52..e22dae7 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin.adoc
@@ -13,11 +13,11 @@ Use to verify at build time that the metamodel of an application is valid.  This
 
 * `swagger` +
 +
-(`1.11.0-SNAPSHOT`) Uses the xref:rgsvc.adoc#_rgsvc_api_SwaggerService[`SwaggerService`] to generate link:http://swagger.io[Swagger] spec files that describe the public and/or private RESTful APIs exposed by the xref:ugvro.adoc#[RestfulObjects viewer].
+Uses the xref:rgsvc.adoc#_rgsvc_api_SwaggerService[`SwaggerService`] to generate link:http://swagger.io[Swagger] spec files that describe the public and/or private RESTful APIs exposed by the xref:ugvro.adoc#[RestfulObjects viewer].
 
 * `xsd` +
 +
-(`1.11.0-SNAPSHOT`) Uses the xref:rgsvc.adoc#_rgsvc_api_JaxbService[`JaxbService`] to generate XSD schemas from any JAXB-annotated view models/DTOs. +
+Uses the xref:rgsvc.adoc#_rgsvc_api_JaxbService[`JaxbService`] to generate XSD schemas from any JAXB-annotated view models/DTOs. +
 +
 This is instead of and preferable to using the JAXB link:https://jaxb.java.net/2.2.4/docs/schemagen.html[schemagen] tool, because it uses the framework's support (via xref:rgant.adoc#_rgant-XmlJavaValueType[`@XmlJavaValueType`]) to translate any references to domain objects into ``OidDto``s (as defined by the Apache Isis xref:rgcms.adoc#_rgcms_schema-common[common schema]).
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_swagger.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_swagger.adoc b/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_swagger.adoc
index 8c8d6d7..f112ae7 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_swagger.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_swagger.adoc
@@ -1,5 +1,5 @@
 [[_cg_isis-maven-plugin_swagger]]
-= `swagger` goal (`1.11.0-SNAPSHOT`)
+= `swagger` goal
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../../../
 :_imagesdir: images/
@@ -87,7 +87,7 @@ Update the `pom.xml` (in your project's `dom` module):
 </profile>
 ----
 <1> the profile is active by default, though can be disabled using `-Dskip.isis-swagger`
-<2> set to `1.11.0-SNAPSHOT` (or any later version)
+<2> set to `1.11.0` (or any later version)
 <3> the manifest discussed previously; adjust as required
 <4> the visibilities to create (one swagger spec file per visibility listed)
 <5> which file format to generate the spec files as.

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_validate.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_validate.adoc b/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_validate.adoc
index f480034..5bed698 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_validate.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_validate.adoc
@@ -151,7 +151,7 @@ Running `mvn test` then generates this output:
 [INFO] BUILD FAILURE
 [INFO] ------------------------------------------------------------------------
 [INFO] ...
-[ERROR] Failed to execute goal org.apache.isis.tool:isis-maven-plugin:1.11.0-SNAPSHOT:validate (default) on project simpleapp-dom: 1 problems found. -> [Help 1]
+[ERROR] Failed to execute goal org.apache.isis.tool:isis-maven-plugin:1.12.0-SNAPSHOT:validate (default) on project simpleapp-dom: 1 problems found. -> [Help 1]
 ----
 
 If one were to attempt to run the application, the same error would appear in the log files on startup (and the application would not boot).

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_xsd.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_xsd.adoc b/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_xsd.adoc
index 20c2531..3e19380 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_xsd.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_cg_isis-maven-plugin_xsd.adoc
@@ -1,5 +1,5 @@
 [[_cg_isis-maven-plugin_xsd]]
-= `xsd` goal (`1.11.0-SNAPSHOT`)
+= `xsd` goal
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../../../
 :_imagesdir: images/
@@ -72,7 +72,7 @@ First, the usual boilerplate:
     <parent>
         <groupId>org.isisaddons.app</groupId>
         <artifactId>todoapp</artifactId>
-        <version>1.11.0-SNAPSHOT</version>
+        <version>1.12.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>todoapp-xsd</artifactId>

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-Action_domainEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-Action_domainEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-Action_domainEvent.adoc
index b791411..32f4ca0 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-Action_domainEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-Action_domainEvent.adoc
@@ -133,7 +133,7 @@ It is also possible to abort the transaction during the executing or executed ph
 
 
 
-== Default, Doop and Noop events (`1.11.0-SNAPSHOT`)
+== Default, Doop and Noop events
 
 If the `domainEvent` attribute is not explicitly specified (is left as its default value, `ActionDomainEvent.Default`),
 then the framework will, by default, post an event.

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-Collection_domainEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-Collection_domainEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-Collection_domainEvent.adoc
index 4c0f045..7998099 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-Collection_domainEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-Collection_domainEvent.adoc
@@ -145,7 +145,7 @@ It is also possible to abort the transaction during the executing or executed ph
 
 
 
-== Default, Doop and Noop events (`1.11.0-SNAPSHOT`)
+== Default, Doop and Noop events
 
 If the `domainEvent` attribute is not explicitly specified (is left as its default value, `CollectionDomainEvent.Default`),
 then the framework will, by default, post an event.

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject.adoc
index 02fccc2..7a0b7e1 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject.adoc
@@ -42,8 +42,7 @@ The table below summarizes the annotation's attributes.
 |Whether the number of instances of this domain class is relatively small (a "bounded" set), such that instances could be selected from a drop-down list box or similar.
 
 |xref:rgant.adoc#_rgant-DomainObject_createdLifecycleEvent[`created-` +
-`LifecycleEvent()`] +
-(`1.11.0-SNAPSHOT`)
+`LifecycleEvent()`]
 |subtype of `ObjectCreatedEvent` +
 (`ObjectCreatedEvent.Default`)
 |the event type to be posted to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] whenever an instance is created
@@ -65,18 +64,16 @@ The table below summarizes the annotation's attributes.
 
 
 |xref:rgant.adoc#_rgant-DomainObject_persistedLifecycleEvent[`persisted-` +
-`LifecycleEvent()`] +
-(`1.11.0-SNAPSHOT`)
+`LifecycleEvent()`]
 |subtype of `ObjectPersistedEvent` +
 (`ObjectPersistedEvent.Default`)
-|the event type to be posted (`1.11.0-SNAPSHOT`) to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] whenever an instance has just been persisted
+|the event type to be posted to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] whenever an instance has just been persisted
 
 |xref:rgant.adoc#_rgant-DomainObject_persistingLifecycleEvent[`persisting-` +
-`LifecycleEvent()`] +
-(`1.11.0-SNAPSHOT`)
+`LifecycleEvent()`]
 |subtype of `ObjectPersistingEvent` +
 (`ObjectPersistingEvent.Default`)
-|the event type to be posted (`1.11.0-SNAPSHOT`) to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] whenever an instance is about to be persisted
+|the event type to be posted to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] whenever an instance is about to be persisted
 
 |xref:rgant.adoc#_rgant-DomainObject_publishing[`publishing()`]
 |`AS_CONFIGURED`, `ENABLED`, `DISABLED` +
@@ -90,25 +87,22 @@ The table below summarizes the annotation's attributes.
 |specifies that a custom implementation of `PublishingPayloadFactoryForObject` be used to create the (payload of the) published event representing the change to the object
 
 |xref:rgant.adoc#_rgant-DomainObject_removingLifecycleEvent[`removing-` +
-`LifecycleEvent()`] +
-(`1.11.0-SNAPSHOT`)
+`LifecycleEvent()`]
 |subtype of `ObjectRemovingEvent` +
 (`ObjectRemovingEvent.Default`)
-|the event type to be posted (`1.11.0-SNAPSHOT`) to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] whenever an instance is about to be deleted
+|the event type to be posted to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] whenever an instance is about to be deleted
 
 |xref:rgant.adoc#_rgant-DomainObject_updatedLifecycleEvent[`updated-` +
-`LifecycleEvent()`] +
-(`1.11.0-SNAPSHOT`)
+`LifecycleEvent()`]
 |subtype of `ObjectUpdatedEvent` +
 (`ObjectUpdatedEvent.Default`)
-|the event type to be posted (`1.11.0-SNAPSHOT`) to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] whenever an instance has just been updated
+|the event type to be posted to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] whenever an instance has just been updated
 
 |xref:rgant.adoc#_rgant-DomainObject_updatingLifecycleEvent[`updating-` +
-`LifecycleEvent()`] +
-(`1.11.0-SNAPSHOT`)
+`LifecycleEvent()`]
 |subtype of `ObjectUpdatingEvent` +
 (`ObjectUpdatingEvent.Default`)
-|the event type to be posted (`1.11.0-SNAPSHOT`) to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] whenever an instance is about to be updated
+|the event type to be posted to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] whenever an instance is about to be updated
 
 |===
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout.adoc
index af9ab1f..e4fe38a 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout.adoc
@@ -51,7 +51,7 @@ The table below summarizes the annotation's attributes.
 |xref:rgant.adoc#_rgant-DomainObjectLayout_cssClassUiEvent[`cssClassUiEvent()`]
 |subtype of `CssClassUiEvent` +
 (`CssClassUiEvent.Default`)
-|the event type to be posted (`1.11.0-SNAPSHOT`) to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] to obtain a CSS class for the domain object.
+|the event type to be posted to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] to obtain a CSS class for the domain object.
 
 |xref:rgant.adoc#_rgant-DomainObjectLayout_describedAs[`describedAs()`]
 |String.
@@ -60,7 +60,7 @@ The table below summarizes the annotation's attributes.
 |xref:rgant.adoc#_rgant-DomainObjectLayout_iconUiEvent[`iconUiEvent()`]
 |subtype of `IconUiEvent` +
 (`IconUiEvent.Default`)
-|the event type to be posted (`1.11.0-SNAPSHOT`) to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] to obtain the icon (name) for the domain object.
+|the event type to be posted to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] to obtain the icon (name) for the domain object.
 
 |xref:rgant.adoc#_rgant-DomainObjectLayout_named[`named()`]
 |String.
@@ -82,7 +82,7 @@ A typical use case is if the desired name is a reserved Java keyword, such as `d
 |xref:rgant.adoc#_rgant-DomainObjectLayout_titleUiEvent[`titleUiEvent()`]
 |subtype of `TitleUiEvent` +
 (`TitleUiEvent.Default`)
-|the event type to be posted (`1.11.0-SNAPSHOT`) to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] to obtain the title for the domain object.
+|the event type to be posted to the xref:rgsvc.adoc#_rgsvc_api_EventBusService[`EventBusService`] to obtain the title for the domain object.
 
 |===
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_cssClassUiEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_cssClassUiEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_cssClassUiEvent.adoc
index 1a58a02..2cf1881 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_cssClassUiEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_cssClassUiEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgant-DomainObjectLayout_cssClassUiEvent]]
-= cssClassUiEvent() (`1.11.0-SNAPSHOT`)
+= cssClassUiEvent()
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_iconUiEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_iconUiEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_iconUiEvent.adoc
index d545388..5c077e1 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_iconUiEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_iconUiEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgant-DomainObjectLayout_iconUiEvent]]
-= iconUiEvent() (`1.11.0-SNAPSHOT`)
+= iconUiEvent()
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_titleUiEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_titleUiEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_titleUiEvent.adoc
index b315b0e..af87cd4 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_titleUiEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObjectLayout_titleUiEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgant-DomainObjectLayout_titleUiEvent]]
-= titleUiEvent() (`1.11.0-SNAPSHOT`)
+= titleUiEvent()
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_createdLifecycleEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_createdLifecycleEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_createdLifecycleEvent.adoc
index 7765f14..a19bd87 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_createdLifecycleEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_createdLifecycleEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgant-DomainObject_createdLifecycleEvent]]
-= createdLifecycleEvent() (`1.11.0-SNAPSHOT`)
+= createdLifecycleEvent()
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_loadedLifecycleEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_loadedLifecycleEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_loadedLifecycleEvent.adoc
index 5e4c897..b33d688 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_loadedLifecycleEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_loadedLifecycleEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgant-DomainObject_loadedLifecycleEvent]]
-= loadedLifecycleEvent() (`1.11.0-SNAPSHOT`)
+= loadedLifecycleEvent()
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_persistedLifecycleEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_persistedLifecycleEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_persistedLifecycleEvent.adoc
index eb73b5b..579dc3c 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_persistedLifecycleEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_persistedLifecycleEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgant-DomainObject_persistedLifecycleEvent]]
-= persistedLifecycleEvent() (`1.11.0-SNAPSHOT`)
+= persistedLifecycleEvent()
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_persistingLifecycleEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_persistingLifecycleEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_persistingLifecycleEvent.adoc
index 2354995..311f299 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_persistingLifecycleEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_persistingLifecycleEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgant-DomainObject_persistingLifecycleEvent]]
-= persistingLifecycleEvent() (`1.11.0-SNAPSHOT`)
+= persistingLifecycleEvent()
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_removingLifecycleEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_removingLifecycleEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_removingLifecycleEvent.adoc
index fc7cbfe..70036db 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_removingLifecycleEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_removingLifecycleEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgant-DomainObject_removingLifecycleEvent]]
-= removingLifecycleEvent() (`1.11.0-SNAPSHOT`)
+= removingLifecycleEvent()
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_updatedLifecycleEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_updatedLifecycleEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_updatedLifecycleEvent.adoc
index ca462a6..b051ae4 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_updatedLifecycleEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_updatedLifecycleEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgant-DomainObject_updatedLifecycleEvent]]
-= updatedLifecycleEvent() (`1.11.0-SNAPSHOT`)
+= updatedLifecycleEvent()
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_updatingLifecycleEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_updatingLifecycleEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_updatingLifecycleEvent.adoc
index 4dc1301..0e9968c 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_updatingLifecycleEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-DomainObject_updatingLifecycleEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgant-DomainObject_updatingLifecycleEvent]]
-= updatingLifecycleEvent() (`1.11.0-SNAPSHOT`)
+= updatingLifecycleEvent()
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-Parameter_regexPattern.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-Parameter_regexPattern.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-Parameter_regexPattern.adoc
index 6479700..95f58f8 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-Parameter_regexPattern.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-Parameter_regexPattern.adoc
@@ -13,7 +13,7 @@ There are three attributes related to enforcing regular expressions:
 * The `regexPatternFlags()` attribute specifies flags that modify the handling of the pattern.  The values are those
 that would normally be passed to `java.util.regex.Pattern#compile(String,int)`.
 
-* The related `regexPatternReplacement()` attribute (as of `1.11.0-SNAPSHOT`) specifies the error message to show if
+* The related `regexPatternReplacement()` attribute specifies the error message to show if
 the provided argument does not match the regex pattern.
 
 For example:
@@ -33,5 +33,5 @@ public class Customer {
     }
 )
 ----
-<1> unused prior to `1.11.0-SNAPSHOT`. Note that there is currently no i18n support for this phrase.
+<1> Note that there is currently no i18n support for this phrase.
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-Property_domainEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-Property_domainEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-Property_domainEvent.adoc
index 0adcabe..8401818 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-Property_domainEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-Property_domainEvent.adoc
@@ -128,7 +128,7 @@ It is also possible to abort the transaction during the executing or executed ph
 
 
 
-== Default, Doop and Noop events (`1.11.0-SNAPSHOT`)
+== Default, Doop and Noop events
 
 If the `domainEvent` attribute is not explicitly specified (is left as its default value, `PropertyDomainEvent.Default`),
 then the framework will, by default, post an event.

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-Property_regexPattern.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-Property_regexPattern.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-Property_regexPattern.adoc
index 117974d..bce90ca 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-Property_regexPattern.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-Property_regexPattern.adoc
@@ -6,14 +6,14 @@
 
 
 
-There are three attributes (as of `1.11.0-SNAPSHOT`, two in earlier releases) related to enforcing regular expressions:
+There are three attributes related to enforcing regular expressions:
 
 * The `regexPattern()` attribute validates the contents of any string property with respect to a regular expression pattern. It is ignored if applied to properties of any other type. This attribute can also be specified for xref:rgant.adoc#_rgant-Parameter_regexPattern[parameters].
 
 * The `regexPatternFlags()` attribute specifies flags that modify the handling of the pattern.  The values are those
 that would normally be passed to `java.util.regex.Pattern#compile(String,int)`.
 
-* The related `regexPatternReplacement()` attribute (as of `1.11.0-SNAPSHOT`) specifies the error message to show if
+* The related `regexPatternReplacement()` attribute specifies the error message to show if
 the provided argument does not match the regex pattern.
 
 For example:
@@ -29,7 +29,7 @@ public class Customer {
     public String getEmail() { ... }
 }
 ----
-<1> new in `1.11.0-SNAPSHOT`. Note that there is currently no i18n support for this phrase.
+<1> Note that there is currently no i18n support for this phrase.
 
 
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-XmlJavaTypeAdapter.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-XmlJavaTypeAdapter.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-XmlJavaTypeAdapter.adoc
index ecf9545..b7b0886 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-XmlJavaTypeAdapter.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-XmlJavaTypeAdapter.adoc
@@ -1,11 +1,11 @@
 [[_rgant-XmlJavaTypeAdapter]]
-= `@XmlJavaTypeAdapter` (`jaxb`) (`1.11.0-SNAPSHOT`)
+= `@XmlJavaTypeAdapter` (`jaxb`)
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/
 
 
-The JAXB `@XmlJavaTypeAdapter` annotation (`1.11.0-SNAPSHOT`) is used with the framework-provided
+The JAXB `@XmlJavaTypeAdapter` annotation is used with the framework-provided
 `PersistentEntityAdapter` to instruct JAXB to serialize references to persistent entities using the canonical
 `OidDto` complex type: the object's type and its identifier.  This is the formal XML equivalent to the `Bookmark`
 provided by the xref:rgsvc.adoc#_rgsvc_api_BookmarkService[`BookmarkService`].

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgant-XmlRootElement.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgant-XmlRootElement.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgant-XmlRootElement.adoc
index 0cfd4af..28f2266 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgant-XmlRootElement.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgant-XmlRootElement.adoc
@@ -1,11 +1,11 @@
 [[_rgant-XmlRootElement]]
-= `@XmlRootElement` (`jaxb`) (`1.11.0-SNAPSHOT`)
+= `@XmlRootElement` (`jaxb`)
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/
 
 
-The `@XmlRootElement` annotation (`1.11.0-SNAPSHOT`) provides an alternative way to define a
+The `@XmlRootElement` annotation provides an alternative way to define a
 xref:rg.adoc#_ugbtb_view-models[view model], in particular one intended to act as a DTO for use within
 xref:ugvro.adoc#[RestfulObjects viewer], or which contains arbitrarily complex state.
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgcfg_configuring-core.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgcfg_configuring-core.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgcfg_configuring-core.adoc
index 38bb116..1b47663 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgcfg_configuring-core.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgcfg_configuring-core.adoc
@@ -67,8 +67,7 @@ See xref:ugfun.adoc#_ugfun_how-tos_ui-hints_action-icons-and-css[UI hints] for m
 |`isis.reflector.facet.` +
 `domainObjectAnnotation.` +
 `createdLifecycleEvent.` +
-`postForDefault` +
-(`1.11.0-SNAPSHOT`)
+`postForDefault`
 |`true`,`false` +
 (`true`)
 |Whether an event should be posted if xref:rgant.adoc#_rgant-DomainObject_createdLifecycleEvent[`@DomainObject#createdLifecycleEvent()`] is not specified (is set to `ObjectCreatedEvent.Default`).
@@ -76,8 +75,7 @@ See xref:ugfun.adoc#_ugfun_how-tos_ui-hints_action-icons-and-css[UI hints] for m
 |`isis.reflector.facet.` +
 `domainObjectAnnotation.` +
 `loadedLifecycleEvent.` +
-`postForDefault` +
-(`1.11.0-SNAPSHOT`)
+`postForDefault`
 |`true`,`false` +
 (`true`)
 |Whether an event should be posted if xref:rgant.adoc#_rgant-DomainObject_loadedLifecycleEvent[`@DomainObject#loadedLifecycleEvent()`] is not specified (is set to `ObjectLoadedEvent.Default`).
@@ -85,8 +83,7 @@ See xref:ugfun.adoc#_ugfun_how-tos_ui-hints_action-icons-and-css[UI hints] for m
 |`isis.reflector.facet.` +
 `domainObjectAnnotation.` +
 `persistingLifecycleEvent.` +
-`postForDefault` +
-(`1.11.0-SNAPSHOT`)
+`postForDefault`
 |`true`,`false` +
 (`true`)
 |Whether an event should be posted if xref:rgant.adoc#_rgant-DomainObject_persistingLifecycleEvent[`@DomainObject#persistingLifecycleEvent()`] is not specified (is set to `ObjectPersistingEvent.Default`).
@@ -94,8 +91,7 @@ See xref:ugfun.adoc#_ugfun_how-tos_ui-hints_action-icons-and-css[UI hints] for m
 |`isis.reflector.facet.` +
 `domainObjectAnnotation.` +
 `persistedLifecycleEvent.` +
-`postForDefault` +
-(`1.11.0-SNAPSHOT`)
+`postForDefault`
 |`true`,`false` +
 (`true`)
 |Whether an event should be posted if xref:rgant.adoc#_rgant-DomainObject_persistedLifecycleEvent[`@DomainObject#persistedLifecycleEvent()`] is not specified (is set to `ObjectPersistedEvent.Default`).
@@ -103,8 +99,7 @@ See xref:ugfun.adoc#_ugfun_how-tos_ui-hints_action-icons-and-css[UI hints] for m
 |`isis.reflector.facet.` +
 `domainObjectAnnotation.` +
 `removingLifecycleEvent.` +
-`postForDefault` +
-(`1.11.0-SNAPSHOT`)
+`postForDefault`
 |`true`,`false` +
 (`true`)
 |Whether an event should be posted if xref:rgant.adoc#_rgant-DomainObject_removingLifecycleEvent[`@DomainObject#removingLifecycleEvent()`] is not specified (is set to `ObjectRemovingEvent.Default`).
@@ -112,8 +107,7 @@ See xref:ugfun.adoc#_ugfun_how-tos_ui-hints_action-icons-and-css[UI hints] for m
 |`isis.reflector.facet.` +
 `domainObjectAnnotation.` +
 `updatingLifecycleEvent.` +
-`postForDefault` +
-(`1.11.0-SNAPSHOT`)
+`postForDefault`
 |`true`,`false` +
 (`true`)
 |Whether an event should be posted if xref:rgant.adoc#_rgant-DomainObject_updatingLifecycleEvent[`@DomainObject#updatingLifecycleEvent()`] is not specified (is set to `ObjectUpdatingEvent.Default`).
@@ -121,32 +115,28 @@ See xref:ugfun.adoc#_ugfun_how-tos_ui-hints_action-icons-and-css[UI hints] for m
 |`isis.reflector.facet.` +
 `domainObjectAnnotation.` +
 `updatedLifecycleEvent.` +
-`postForDefault` +
-(`1.11.0-SNAPSHOT`)
+`postForDefault`
 |`true`,`false` +
 (`true`)
 |Whether an event should be posted if xref:rgant.adoc#_rgant-DomainObject_updatedLifecycleEvent[`@DomainObject#updatedLifecycleEvent()`] is not specified (is set to `ObjectUpdatedEvent.Default`).
 
 |`isis.reflector.facet.` +
 `domainObjectLayoutAnnotation.` +
-`cssClassUiEvent.postForDefault` +
-(`1.11.0-SNAPSHOT`)
+`cssClassUiEvent.postForDefault`
 |`true`,`false` +
 (`true`)
 |Whether an event should be posted if xref:rgant.adoc#_rgant-DomainObjectLayout_cssClassUiEvent[`@DomainObjectLayout#cssClassUiEvent()`] is not specified (is set to `CssClassUiEvent.Default`).
 
 |`isis.reflector.facet.` +
 `domainObjectLayoutAnnotation.` +
-`iconUiEvent.postForDefault` +
-(`1.11.0-SNAPSHOT`)
+`iconUiEvent.postForDefault`
 |`true`,`false` +
 (`true`)
 |Whether an event should be posted if xref:rgant.adoc#_rgant-DomainObjectLayout_iconUiEvent[`@DomainObjectLayout#iconUiEvent()`] is not specified (is set to `IconUiEvent.Default`).
 
 |`isis.reflector.facet.` +
 `domainObjectLayoutAnnotation.` +
-`titleUiEvent.postForDefault` +
-(`1.11.0-SNAPSHOT`)
+`titleUiEvent.postForDefault`
 |`true`,`false` +
 (`true`)
 |Whether an event should be posted if xref:rgant.adoc#_rgant-DomainObjectLayout_titleUiEvent[`@DomainObjectLayout#titleUiEvent()`] is not specified (is set to `TitleUiEvent.Default`).

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_roles_Dto.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_roles_Dto.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_roles_Dto.adoc
index 6c32fea..dd94e0d 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_roles_Dto.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_roles_Dto.adoc
@@ -1,11 +1,11 @@
 [[_rgcms_classes_mixins_Dto]]
-= `Dto` (`1.11.0-SNAPSHOT`)
+= `Dto`
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/
 
 
-The `Dto` role interface (`1.11.0-SNAPSHOT`) is intended to be implemented by JAXB-annotated view models, that is, annotated using
+The `Dto` role interface is intended to be implemented by JAXB-annotated view models, that is, annotated using
 xref:rgant.adoc#_rgant-XmlRootElement[`@XmlRootElement`].  It enables the ability to download the XML and
 XSD schema of those objects using two xref:ugbtb.adoc#_ugbtb_decoupling_mixins[mixins],
 `Dto_downloadXml` and `Dto_downloadXsd`.

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_roles_Persistable.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_roles_Persistable.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_roles_Persistable.adoc
index 79be2ba..e51419c 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_roles_Persistable.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_roles_Persistable.adoc
@@ -1,5 +1,5 @@
 [[_rgcms_classes_mixins_Persistable]]
-= `Persistable` (`1.11.0-SNAPSHOT`)
+= `Persistable`
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/
@@ -9,7 +9,7 @@ All domain entities automatically implement the DataNucleus `Persistable` role i
 process (the fully qualified class name is `org.datanucleus.enhancement.Persistable`).  So as a developer you do not
 need to write any code for this role interface.
 
-Nevertheless, the `Persistable_downloadJdoMetadata` mixin (`1.11.0-SNAPSHOT`) provides the ability to download the
+Nevertheless, the `Persistable_downloadJdoMetadata` mixin provides the ability to download the
 JDO link:http://www.datanucleus.org/products/datanucleus/jdo/metadata_xml.html[class metadata in XML] form.  The mixin
 defines the following action:
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_super_AbstractSubscriber.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_super_AbstractSubscriber.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_super_AbstractSubscriber.adoc
index 72b7562..9e36dce 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_super_AbstractSubscriber.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_super_AbstractSubscriber.adoc
@@ -15,4 +15,4 @@ seeds certain domain entities; these will generate xref:rgcms.adoc#_rgcms_classe
 any subscribers must be registered before such seed services.  The easiest way to do this is to use the
 xref:rgant.adoc#_rgant-DomainServiceLayout_menuOrder[`@DomainServiceLayout#menuOrder()`] attribute.
 
-As a convenience, (as of `1.11.0-SNAPSHOT`) the `AbstractSubscriber` specifies this attribute.
\ No newline at end of file
+As a convenience, the `AbstractSubscriber` specifies this attribute.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent.adoc
index 34978df..ba0e3f8 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent.adoc
@@ -1,5 +1,5 @@
 [[_rgcms_classes_uievent]]
-= UI Event Classes (`1.11.0-SNAPSHOT`)
+= UI Event Classes
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_CssClassUiEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_CssClassUiEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_CssClassUiEvent.adoc
index d40c85d..5190d6e 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_CssClassUiEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_CssClassUiEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgcms_classes_uievent_CssClassUiEvent]]
-= `CssClassUiEvent`  (`1.11.0-SNAPSHOT`)
+= `CssClassUiEvent`
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_IconUiEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_IconUiEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_IconUiEvent.adoc
index e577401..c94b5c8 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_IconUiEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_IconUiEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgcms_classes_uievent_IconUiEvent]]
-= `TitleUiEvent` (`1.11.0-SNAPSHOT`)
+= `IconUiEvent`
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_TitleUiEvent.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_TitleUiEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_TitleUiEvent.adoc
index ec4a5e4..d4164e7 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_TitleUiEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgcms_classes_uievent_TitleUiEvent.adoc
@@ -1,5 +1,5 @@
 [[_rgcms_classes_uievent_TitleUiEvent]]
-= `TitleUiEvent`  (`1.11.0-SNAPSHOT`)
+= `TitleUiEvent`
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api.adoc
index 351912f..2370132 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api.adoc
@@ -188,7 +188,7 @@ SpecificationProvider`].
 |`JaxbServiceDefault` +
 ``o.a.i.core`` +
 ``isis-core-schema``
-|`1.11.0-SNAPSHOT`.
+|
 
 
 |xref:rgsvc.adoc#_rgsvc_api_MementoService[`o.a.i.applib.` +
@@ -245,7 +245,7 @@ SpecificationProvider`].
 |xref:rgsvc.adoc#_rgsvc_api_SwaggerService[`o.a.i.applib.` +
 `services.sudo` +
 `SwaggerService`]
-|(`1.11.0-SNAPSHOT`) Generates link:http://swagger.io/[Swagger] spec files to describe the public and/or private RESTful APIs exposed by the xref:ugvro.adoc#[RestfulObjects viewer].  These can then be used with the link:http://swagger.io/swagger-ui/[Swagger UI] page to explore the REST API, or used to generate client-side stubs using the link:http://swagger.io/swagger-codegen/[Swagger codegen] tool, eg for use in a custom REST client app.
+|Generates link:http://swagger.io/[Swagger] spec files to describe the public and/or private RESTful APIs exposed by the xref:ugvro.adoc#[RestfulObjects viewer].  These can then be used with the link:http://swagger.io/swagger-ui/[Swagger UI] page to explore the REST API, or used to generate client-side stubs using the link:http://swagger.io/swagger-codegen/[Swagger codegen] tool, eg for use in a custom REST client app.
 |`SwaggerServiceDefault` +
 ``o.a.i.core`` +
 ``isis-core-metamodel``

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_EventBusService.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_EventBusService.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_EventBusService.adoc
index 0ae4f03..4536075 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_EventBusService.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_EventBusService.adoc
@@ -90,7 +90,7 @@ This works for both singleton (application-scoped) and also xref:rgant.adoc#_rga
 [TIP]
 ====
 The xref:rgcms.adoc#_rgcms_classes_super_AbstractSubscriber[`AbstractSubscriber`] class automatically performs this
-registration.  As a convenience, (as of `1.11.0-SNAPSHOT`) it is also annotated with the
+registration.  As a convenience, it is also annotated with the
 xref:rgant.adoc#_rgant-DomainServiceLayout_menuOrder[`@DomainServiceLayout#menuOrder()`] attribute.
 ====
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_JaxbService.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_JaxbService.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_JaxbService.adoc
index 9072fd5..a0503f5 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_JaxbService.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_JaxbService.adoc
@@ -1,12 +1,12 @@
 [[_rgsvc_api_JaxbService]]
-= `JaxbService` (`1.11.0-SNAPSHOT`)
+= `JaxbService`
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/
 
 
 
-The `JaxbService` (`1.11.0-SNAPSHOT`) allows instances of JAXB-annotated classes to be marshalled to XML and
+The `JaxbService` allows instances of JAXB-annotated classes to be marshalled to XML and
 unmarshalled from XML back into domain objects.
 
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_SwaggerService.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_SwaggerService.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_SwaggerService.adoc
index 2884ede..67395af 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_SwaggerService.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_SwaggerService.adoc
@@ -1,12 +1,12 @@
 [[_rgsvc_api_SwaggerService]]
-= `SwaggerService` (`1.11.0-SNAPSHOT`)
+= `SwaggerService`
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 :_basedir: ../
 :_imagesdir: images/
 
 
 
-The `SwaggerService` (`1.11.0-SNAPSHOT`) generates link:http://swagger.io/[Swagger] spec files to describe the public and/or private RESTful APIs exposed by the xref:ugvro.adoc#[RestfulObjects viewer].
+The `SwaggerService` generates link:http://swagger.io/[Swagger] spec files to describe the public and/or private RESTful APIs exposed by the xref:ugvro.adoc#[RestfulObjects viewer].
 
 These spec files can then be used with the link:http://swagger.io/swagger-ui/[Swagger UI] page to explore the REST API, or used to generate client-side stubs using the link:http://swagger.io/swagger-codegen/[Swagger codegen] tool, eg for use in a custom REST client app.
 

http://git-wip-us.apache.org/repos/asf/isis/blob/0f92613e/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_XmlSnapshotService.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_XmlSnapshotService.adoc b/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_XmlSnapshotService.adoc
index 88409bb..af8080b 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_XmlSnapshotService.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_rgsvc_api_XmlSnapshotService.adoc
@@ -210,9 +210,8 @@ The xref:rgsvc.adoc#_rgsvc_api_BookmarkService[`BookmarkService`] provides a mec
 
 The xref:rgsvc.adoc#_rgsvc_api_MementoService[`MementoService`] also provides a mechanism for generating string representations of domain objects.
 
-The xref:rgsvc.adoc#_rgsvc_api_JaxbService[`JaxbService`] (`1.11.0-SNAPSHOT`) is a simple wrapper around
-standard JAXB functionality for generating both XMLs and XSDs from JAXB-annotated classes.  Note that (as of
-`1.11.0-SNAPSHOT`) there is built-in support for JAXB classes (ie annotated with
+The xref:rgsvc.adoc#_rgsvc_api_JaxbService[`JaxbService`] is a simple wrapper around
+standard JAXB functionality for generating both XMLs and XSDs from JAXB-annotated classes.  Note that there is built-in support for JAXB classes (ie annotated with
 xref:rgant.adoc#_rgant-XmlRootElement[`@XmlRootElement`]) to be used as view models.