Skip to content

Commit

Permalink
devonfw#1696: fixed latest version
Browse files Browse the repository at this point in the history
added latest version to Context and TemplatesConfigurationVersion
  • Loading branch information
jan-vcapgemini committed Aug 10, 2023
1 parent ca2d7db commit 42f7204
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,15 @@ public enum ContextConfigurationVersion implements ConfigurationVersionEnum {
* <li>added links and tags, made templateFolder optional</li>
* </ul>
*/
v3_0(3.0f, false);
v3_0(3.0f, false),

/**
* ChangeLog:
* <ul>
* <li>added links and tags, made templateFolder optional</li>
* </ul>
*/
v6_0(6.0f, false);

/** Comparable float representation of the version number. */
private float floatRepresentation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,15 @@ public enum TemplatesConfigurationVersion implements ConfigurationVersionEnum {
* <li>added explanation attribute to increments</li>
* </ul>
*/
v5_0(5.0f, true);
v5_0(5.0f, true),

/**
* ChangeLog:
* <ul>
* <li>added explanation attribute to increments</li>
* </ul>
*/
v6_0(6.0f, true);

/** Comparable float representation of the version number. */
private float floatRepresentation;
Expand Down

0 comments on commit 42f7204

Please sign in to comment.