This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-rng.git
The following commit(s) were added to refs/heads/master by this push: new 3cfd7a9 RNG-139: Fix changes.xml 3cfd7a9 is described below commit 3cfd7a93cacc67f2651f2c0a34ee60d68ac0e088 Author: Alex Herbert <aherb...@apache.org> AuthorDate: Sat May 29 20:52:20 2021 +0100 RNG-139: Fix changes.xml Added XML schema for validation. Removed <br> inside the action tag. --- src/changes/changes.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index a70ffc2..e6a4203 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -45,7 +45,9 @@ with a new-line in the release notes. (These spaces are ignored when displaying If the output is not quite correct, check for invisible trailing spaces! --> -<document> +<document xmlns="http://maven.apache.org/changes/1.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd"> <properties> <title>Apache Commons RNG Release Notes</title> </properties> @@ -77,7 +79,7 @@ as 'flaky' in the report). "> <action dev="aherbert" type="add" issue="136"> New "ObjectSampler<T>" and "SharedStateObjectSampler<T>" interfaces. - These interfaces are implemented by samplers returning an object.<br/> + These interfaces are implemented by samplers returning an object. This changes the functional compatibility of existing samplers that implement SharedStatedSampler<R>: CollectionSampler<T>; CombinationSampler; DiscreteProbabilityCollectionSampler<T>; PermutationSampler; and UnitSphereSampler.