diff --git a/CHANGELOG.md b/CHANGELOG.md index eeb6379..327e31d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,11 @@ 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] + +## [11.1.0] - 2020-05-19 ### Added - ScrollQueue - Added OnItemTrimmed event - - ScrollQueueTests - Added OnItemTrimmed event test - - DateTimeNullableEventArgs + - Added DateTimeNullableEventArgs ## [11.0.0] - 2020-03-20 ### Added diff --git a/ICD.Common.Utils/Collections/ScrollQueue.cs b/ICD.Common.Utils/Collections/ScrollQueue.cs index b7b5290..eb636c5 100644 --- a/ICD.Common.Utils/Collections/ScrollQueue.cs +++ b/ICD.Common.Utils/Collections/ScrollQueue.cs @@ -17,6 +17,9 @@ namespace ICD.Common.Utils.Collections private readonly LinkedList m_Collection; private int m_MaxSize; + /// + /// Raised when an item is trimmed from the end of the queue. + /// public event EventHandler> OnItemTrimmed; #region Properties diff --git a/ICD.Common.Utils/Properties/AssemblyInfo.cs b/ICD.Common.Utils/Properties/AssemblyInfo.cs index 92044d3..49b916b 100644 --- a/ICD.Common.Utils/Properties/AssemblyInfo.cs +++ b/ICD.Common.Utils/Properties/AssemblyInfo.cs @@ -4,4 +4,4 @@ using System.Reflection; [assembly: AssemblyCompany("ICD Systems")] [assembly: AssemblyProduct("ICD.Common.Utils")] [assembly: AssemblyCopyright("Copyright © ICD Systems 2020")] -[assembly: AssemblyVersion("11.0.0.0")] +[assembly: AssemblyVersion("11.1.0.0")]