From eee950f7e1860e2f92fb3fd9b424511c9fc5afad Mon Sep 17 00:00:00 2001 From: Philip Helger Date: Mon, 16 Sep 2024 20:25:11 +0200 Subject: [PATCH] Prepared for release --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0dd6af16..df3ad588 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Validating a business document requires a few more steps. IValidationSourceXML aValidationSource = ...; // Build execution manager - final ValidationExecutionManager aVEM = new ValidationExecutionManager<> (aVES); + final ValidationExecutionManager aVEM = new ValidationExecutionManager<> (IValidityDeterminator.createDefault (), aVES); // Main execution of rules on validation source final ValidationResultList aValidationResult = aVEM.executeValidation (aValidationSource); @@ -97,7 +97,7 @@ Since v6 the following simpler code can be used instead: IValidationSourceXML aValidationSource = ...; // Shortcut introduced in v6 - final ValidationResultList aValidationResult = ValidationExecutionManager.executeValidation (aVES, aValidationSource); + final ValidationResultList aValidationResult = ValidationExecutionManager.executeValidation (IValidityDeterminator.createDefault (), aVES, aValidationSource); if (aValidationResult.containsAtLeastOneError ()) { // errors found ... } else { @@ -150,7 +150,7 @@ Please ensure that your stack size is at least 1MB (for Saxon). Using the Oracle # News and noteworthy -* v10.0.0 - work in progress +* v10.0.0 - 2024-09-16 * Updated to ph-diver 3.0.1 * The outcome of a validation can now be `valid`, `invalid` or `unclear` (new) * Added new classes `EExtendedValidity` and `IValidityDeterminator`