Skip to content

Commit

Permalink
Fixed valid per date; #26
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Jan 17, 2025
1 parent 1beec04 commit 842de54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ I hope that with the introduction of PINT, the versioning problem will be solved

# News and noteworthy

* v3.2.5 - work in progress
* Fixed the "valid per" date of the Peppol 2024-11 release. See [#26](https://github.com/phax/phive-rules/issues/26) - thx @wildhai
* v3.2.4 - 2025-01-08
* Added specific support for XRechnung Extension (for versions 2.0.1, 2.1.1, 2.2.0, 2.3.1, 3.0.0, 3.0.1 and 3.0.2)
* v3.2.3 - 2025-01-03
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public final class PeppolValidation2024_11
// Standard resources
public static final Version PEPPOL_VALIDATION_ARTEFACT_VERSION = new Version (2024, 11, 0);
public static final String VERSION_STR = PEPPOL_VALIDATION_ARTEFACT_VERSION.getAsString (false);
public static final LocalDate VALID_PER = PDTFactory.createLocalDate (2024, Month.FEBRUARY, 17);
public static final LocalDate VALID_PER = PDTFactory.createLocalDate (2025, Month.FEBRUARY, 17);
public static final OffsetDateTime VALID_PER_UTC = PDTFactory.createOffsetDateTimeUTC (VALID_PER);

// Standard
Expand Down

0 comments on commit 842de54

Please sign in to comment.