From ecf7e626f30f1859400be1d0cbe088f3a02dd478 Mon Sep 17 00:00:00 2001 From: Drew Tingen Date: Fri, 14 Feb 2020 23:55:32 -0500 Subject: [PATCH 1/3] fix: IcdTimer fix issue that prevents OnElapsed callback from firing when Length is less than (or close to) Heartbeat Interval --- ICD.Common.Utils/Timers/IcdTimer.cs | 1 + 1 file changed, 1 insertion(+) 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(); From 8e5486e1ef3e7232e6ec1778086c47a9b3537526 Mon Sep 17 00:00:00 2001 From: Drew Tingen Date: Fri, 14 Feb 2020 23:56:56 -0500 Subject: [PATCH 2/3] chore: Changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a14fd3a..a45300f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] +### 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 From 69eb4b3d34fdba53a8f4e7569166ef70109b8dcd Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Tue, 18 Feb 2020 12:10:38 -0500 Subject: [PATCH 3/3] chore: Updating changelog, incrementing patch version --- CHANGELOG.md | 2 ++ ICD.Common.Utils/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a45300f..6f0d74f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [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 diff --git a/ICD.Common.Utils/Properties/AssemblyInfo.cs b/ICD.Common.Utils/Properties/AssemblyInfo.cs index db83791..cdc25ff 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: AssemblyVersion("8.8.0.0")] +[assembly: AssemblyCopyright("Copyright © ICD Systems 2020")] +[assembly: AssemblyVersion("8.8.1.0")]