fva-net / rexs-api-java

The REXS API Java library contains core utility classes for the REXS interface.
Apache License 2.0
2 stars 0 forks source link

Add "DEV" as a constant version #121

Closed johkoenig closed 1 month ago

johkoenig commented 1 month ago

The only content-wise change in this PR is the addition of DEV in RexsStandardVersions:

    /**
     * Constant for the current development version.
     */
    RexsVersion DEV = RexsVersion.create("DEV", 9999);

The order 9999 will assure that this is always considered newer than any other version.

The rest of this PR is just housekeeping, completion of javadoc and increase of test coverage.