diff --git a/CHANGELOG.md b/CHANGELOG.md index b3a228df..acc54764 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,9 @@ Changelog based on the [format here](https://keepachangelog.com/en/1.0.0/). `b09e7388`. - Added rudimentary ZMQ receiver monitoring via the `dataTransfer` module. If no files have been transferred in 12 hours, a warning will be emitted. See: `4ea80cf2`. +- Added dedicated direct ZMQ receiver monitor via the `overwatch.receiver.monitor` module. It monitors + heartbeat information directly from the ZMQ receivers. It is a supplement to the monitoring via the + `dataTransfer` module. See: `c081a8bf`. - `repr` and `str` methods to most of the processing classes to aid in debugging. See: `3a544d67` and `43657bcf` diff --git a/overwatch/version.py b/overwatch/version.py index 887402eb..e8787d3b 100644 --- a/overwatch/version.py +++ b/overwatch/version.py @@ -12,7 +12,7 @@ import re # Provide the version as a string -__version__ = "1.2" +__version__ = "1.2.1" version = __version__ # As provide as a tuple, with each value as it's own entry. # ie. "1.0" -> `("1", "0")`