File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ CHANGELOG
3131 content of the files first has to converted to a JSON object.
3232 This commit also implements simple error handling in case the files do
3333 not exists or can not be created.
34+ - The version API-endpoint now correctly reports the version of IntelMQ API
35+ as ``intelmq-api ``, not as ``intelmq-manager `` (by Sebastian Wagner).
3436
3537
36382.3.1 (2021-03-25)
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ def list(self, kind: str) -> JSONFile:
121121 def version (self ) -> Dict [str , str ]:
122122 intelmq_version = self ._run_str (["--version" ]).strip ()
123123 return {"intelmq" : intelmq_version ,
124- "intelmq-manager " : __version__ ,
124+ "intelmq-api " : __version__ ,
125125 }
126126
127127 def check (self ) -> JSONFile :
You can’t perform that action at this time.
0 commit comments