mirror of
https://github.com/itplr-kosit/validator.git
synced 2026-05-25 16:55:39 +00:00
(chore) engine version in engine info
This commit is contained in:
parent
08d43dc9ab
commit
5a7c6775b1
2 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue