diff --git a/cobigen/cobigen-core/src/main/java/com/devonfw/cobigen/impl/config/constant/ContextConfigurationVersion.java b/cobigen/cobigen-core/src/main/java/com/devonfw/cobigen/impl/config/constant/ContextConfigurationVersion.java index 4839afe63..6e848757e 100644 --- a/cobigen/cobigen-core/src/main/java/com/devonfw/cobigen/impl/config/constant/ContextConfigurationVersion.java +++ b/cobigen/cobigen-core/src/main/java/com/devonfw/cobigen/impl/config/constant/ContextConfigurationVersion.java @@ -36,7 +36,15 @@ public enum ContextConfigurationVersion implements ConfigurationVersionEnum { *
  • added links and tags, made templateFolder optional
  • * */ - v3_0(3.0f, false); + v3_0(3.0f, false), + + /** + * ChangeLog: + * + */ + v6_0(6.0f, false); /** Comparable float representation of the version number. */ private float floatRepresentation; diff --git a/cobigen/cobigen-core/src/main/java/com/devonfw/cobigen/impl/config/constant/TemplatesConfigurationVersion.java b/cobigen/cobigen-core/src/main/java/com/devonfw/cobigen/impl/config/constant/TemplatesConfigurationVersion.java index 82749b646..122af5b72 100644 --- a/cobigen/cobigen-core/src/main/java/com/devonfw/cobigen/impl/config/constant/TemplatesConfigurationVersion.java +++ b/cobigen/cobigen-core/src/main/java/com/devonfw/cobigen/impl/config/constant/TemplatesConfigurationVersion.java @@ -43,7 +43,15 @@ public enum TemplatesConfigurationVersion implements ConfigurationVersionEnum { *
  • added explanation attribute to increments
  • * */ - v5_0(5.0f, true); + v5_0(5.0f, true), + + /** + * ChangeLog: + * + */ + v6_0(6.0f, true); /** Comparable float representation of the version number. */ private float floatRepresentation;