diff --git a/CHANGELOG.md b/CHANGELOG.md index b4bfbb9..7bf22fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 1.3.1 +### Changed +- engine info contains version number of the validator (configurations can output this in the report for maintainance puposes) ## 1.3.0 diff --git a/src/main/java/de/kosit/validationtool/impl/DefaultCheck.java b/src/main/java/de/kosit/validationtool/impl/DefaultCheck.java index f87fb00..8fee021 100644 --- a/src/main/java/de/kosit/validationtool/impl/DefaultCheck.java +++ b/src/main/java/de/kosit/validationtool/impl/DefaultCheck.java @@ -92,7 +92,7 @@ public class DefaultCheck implements Check { protected static CreateReportInput createReport() { final CreateReportInput type = new CreateReportInput(); final EngineType e = new EngineType(); - e.setName(EngineInformation.getName()); + e.setName(EngineInformation.getName() + " " + EngineInformation.getVersion()); type.setEngine(e); type.setTimestamp(createTimestamp()); type.setFrameworkVersion(EngineInformation.getFrameworkVersion());