You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2021/05/29 19:52:25 UTC

[commons-rng] branch master updated: RNG-139: Fix changes.xml

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 <ah...@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&lt;T&gt;" and "SharedStateObjectSampler&lt;T&gt;" 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&lt;R&gt;: CollectionSampler&lt;T&gt;; CombinationSampler;
         DiscreteProbabilityCollectionSampler&lt;T&gt;; PermutationSampler; and UnitSphereSampler.