diff --git a/CHANGELOG.md b/CHANGELOG.md index 05231f4..5cdcce8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -91,6 +91,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Better VC-4 support for IcdConsole - JSON refactoring for simpler deserialization +## [8.8.1] - 2020-02-18 +### Changed + - IcdTimer - fixed issue that prevented OnElapsed event from firing when Length is less than (or close to) Heartbeat Interval + ## [8.8.0] - 2020-01-23 ### Added - Added an overload to PriorityQueue for determing the de-duplication behaviour diff --git a/ICD.Common.Utils/Properties/AssemblyInfo.cs b/ICD.Common.Utils/Properties/AssemblyInfo.cs index 10a9662..b485b0b 100644 --- a/ICD.Common.Utils/Properties/AssemblyInfo.cs +++ b/ICD.Common.Utils/Properties/AssemblyInfo.cs @@ -3,5 +3,5 @@ using System.Reflection; [assembly: AssemblyTitle("ICD.Common.Utils")] [assembly: AssemblyCompany("ICD Systems")] [assembly: AssemblyProduct("ICD.Common.Utils")] -[assembly: AssemblyCopyright("Copyright © ICD Systems 2019")] +[assembly: AssemblyCopyright("Copyright © ICD Systems 2020")] [assembly: AssemblyVersion("9.7.0.0")] diff --git a/ICD.Common.Utils/Timers/IcdTimer.cs b/ICD.Common.Utils/Timers/IcdTimer.cs index fb2a633..de2099e 100644 --- a/ICD.Common.Utils/Timers/IcdTimer.cs +++ b/ICD.Common.Utils/Timers/IcdTimer.cs @@ -118,6 +118,7 @@ namespace ICD.Common.Utils.Timers Length = length; m_Stopwatch.Reset(); + m_LastHeartbeatMilliseconds = 0; m_Stopwatch.Start(); RaiseOnIsRunningChanged();