chore: Updating changelog, incrementing minor version

This commit is contained in:
Chris Cameron
2020-05-19 10:45:05 -04:00
parent cad3cf60cf
commit 9912097a33
3 changed files with 7 additions and 3 deletions

View File

@@ -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

View File

@@ -17,6 +17,9 @@ namespace ICD.Common.Utils.Collections
private readonly LinkedList<TContents> m_Collection;
private int m_MaxSize;
/// <summary>
/// Raised when an item is trimmed from the end of the queue.
/// </summary>
public event EventHandler<GenericEventArgs<TContents>> OnItemTrimmed;
#region Properties

View File

@@ -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")]