mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 13:15:07 +00:00
chore: Updating changelog, incrementing minor version
This commit is contained in:
@@ -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).
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [11.1.0] - 2020-05-19
|
||||||
### Added
|
### Added
|
||||||
- ScrollQueue - Added OnItemTrimmed event
|
- ScrollQueue - Added OnItemTrimmed event
|
||||||
- ScrollQueueTests - Added OnItemTrimmed event test
|
- Added DateTimeNullableEventArgs
|
||||||
- DateTimeNullableEventArgs
|
|
||||||
|
|
||||||
## [11.0.0] - 2020-03-20
|
## [11.0.0] - 2020-03-20
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -17,6 +17,9 @@ namespace ICD.Common.Utils.Collections
|
|||||||
private readonly LinkedList<TContents> m_Collection;
|
private readonly LinkedList<TContents> m_Collection;
|
||||||
private int m_MaxSize;
|
private int m_MaxSize;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Raised when an item is trimmed from the end of the queue.
|
||||||
|
/// </summary>
|
||||||
public event EventHandler<GenericEventArgs<TContents>> OnItemTrimmed;
|
public event EventHandler<GenericEventArgs<TContents>> OnItemTrimmed;
|
||||||
|
|
||||||
#region Properties
|
#region Properties
|
||||||
|
|||||||
@@ -4,4 +4,4 @@ using System.Reflection;
|
|||||||
[assembly: AssemblyCompany("ICD Systems")]
|
[assembly: AssemblyCompany("ICD Systems")]
|
||||||
[assembly: AssemblyProduct("ICD.Common.Utils")]
|
[assembly: AssemblyProduct("ICD.Common.Utils")]
|
||||||
[assembly: AssemblyCopyright("Copyright © ICD Systems 2020")]
|
[assembly: AssemblyCopyright("Copyright © ICD Systems 2020")]
|
||||||
[assembly: AssemblyVersion("11.0.0.0")]
|
[assembly: AssemblyVersion("11.1.0.0")]
|
||||||
|
|||||||
Reference in New Issue
Block a user