diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f1653e..93ca6dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,7 +43,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Added methods for deserializing an XML array ### Changed - - Fixed a bug where ANSI color encoded strings with percentages were being scrambled - Improvements to JSON DateTime parsing, particularly in Net Standard ## [9.7.0] - 2019-08-15 @@ -54,6 +53,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Changed - JSON dict serialization serializes keys instead of converting to property name + - Fixed a bug where ANSI color encoded strings with percentages were being scrambled ## [9.6.0] - 2019-07-03 ### Added @@ -128,6 +128,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Better VC-4 support for IcdConsole - JSON refactoring for simpler deserialization +## [8.9.2] - 2020-07-28 +### Changed + - StringExtensions - fixed an issue with IsNumeric where empty strings would return true + ## [8.9.1] - 2020-05-27 ### Changed - Changed ProcessorUtils to use CrestronEnvironment to retrive serial number - this fixes issues with new serial numbers that aren't deciaml TSIDs diff --git a/ICD.Common.Utils/Extensions/StringExtensions.cs b/ICD.Common.Utils/Extensions/StringExtensions.cs index 066e984..c7f14f6 100644 --- a/ICD.Common.Utils/Extensions/StringExtensions.cs +++ b/ICD.Common.Utils/Extensions/StringExtensions.cs @@ -213,7 +213,7 @@ namespace ICD.Common.Utils.Extensions if (extends == null) throw new ArgumentNullException("extends"); - return extends.All(char.IsDigit); + return extends.AnyAndAll(char.IsDigit); } ///