From b5be1111f8d8482c777ae454acce45279fefc5e8 Mon Sep 17 00:00:00 2001 From: Otiel Date: Wed, 26 Nov 2025 23:39:46 +0100 Subject: [PATCH 1/2] =?UTF-8?q?Bump=20version=201.3.0=20=E2=86=92=202.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/WpfMessageBox/WpfMessageBox.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From c159ae97a69ae1bd49c9c6a778e7ae8874f520ba Mon Sep 17 00:00:00 2001 From: Otiel Date: Wed, 26 Nov 2025 23:40:58 +0100 Subject: [PATCH 2/2] CHANGELOG: add 2.0.0 --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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