From 0ba13bf51a802329727b76d6c8e8f86c8d3d69ad Mon Sep 17 00:00:00 2001 From: Pim Brouwers Date: Fri, 6 Dec 2024 15:28:16 -0500 Subject: [PATCH] changelog --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 637db59..0ccc849 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## [1.2.0] - 2024-12-06 + +### Added + +- Option `TryParse` for: `bool`, `byte`, `short`, `int`, `long`, `decimal`, `double`, `float`, `Guid`, `DateTimeOffset`, `DateTime`, `DateOnly`, `TimeOnly`, `TimeSpan`, `Enum` (ex: `intOption.TryParse`). +- `ModelStateDictionary.AddResultErrors()` extension method to add `Result` errors to the `ModelStateDictionary`. +- `ValidationOption` for scenarios non-message based validation scenarios. + +## [1.1.1] - 2024-12-06 + +### Fixed + +- Option.NoneValue, Option.NoneValueAsync properties. + ## [1.1.0] - 2024-12-01 ### Added