diff --git a/CHANGELOG.md b/CHANGELOG.md index f06f1de..9f0046d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# 2.0.0 (2025-11-29) + +## Breaking changes + +* The use of the standard `MessageBox` objects have been replaced in order to remove the `System.Drawing.Common` dependency. [#7](https://github.com/Otiel/WpfMessageBox/pull/7) + + You should replace the use of: + + * `MessageBoxResult` by `WpfMessageBoxResult` + * `MessageBoxIcon` by `WpfMessageBoxIcon` + * `MessageBoxImage` by `WpfMessageBoxImage` + +## New features + +* Add `WpfMessageBoxImage.Validation` showing a green tick ✔. [#7](https://github.com/Otiel/WpfMessageBox/pull/7) +* Add support for .NET 10. [#6](https://github.com/Otiel/WpfMessageBox/pull/6) + # 1.3.0 (2025-10-19) ## Breaking changes diff --git a/src/WpfMessageBox/WpfMessageBox.csproj b/src/WpfMessageBox/WpfMessageBox.csproj index 959a659..549cc73 100644 --- a/src/WpfMessageBox/WpfMessageBox.csproj +++ b/src/WpfMessageBox/WpfMessageBox.csproj @@ -2,7 +2,7 @@ - 1.3.0 + 2.0.0