mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 03:57:32 +00:00
chore: Updating changelog, incrementing minor version
This commit is contained in:
parent
cad3cf60cf
commit
9912097a33
3 changed files with 7 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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")]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue