From 25459e3b92a389aa65ec1b0e1d60727d65cd7c39 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Tue, 25 Mar 2025 08:46:05 +0100 Subject: [PATCH 01/11] remove NUnit4 projects from solution --- XMLUnit.NET.sln | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/XMLUnit.NET.sln b/XMLUnit.NET.sln index 844c085..d09840b 100644 --- a/XMLUnit.NET.sln +++ b/XMLUnit.NET.sln @@ -29,10 +29,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "XMLUnit.Placeholders.Tests" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{AEB02F96-2A15-4740-84CB-6F7E36F85062}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XMLUnit.NUnit4.Constraints.Test", "src\tests\net-constraints-nunit4\XMLUnit.NUnit4.Constraints.Test.csproj", "{A4710B49-EB5D-4E6E-A515-AE73AC9773CF}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XMLUnit.NUnit4.Constraints", "src\main\net-constraints-nunit4\XMLUnit.NUnit4.Constraints.csproj", "{9E6EA8DE-F1E9-4DC0-8E9C-EDCAF0E44FA7}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -63,14 +59,6 @@ Global {97290BD0-CCF0-48CF-95F2-B1A9F6C3EE9F}.Debug|Any CPU.Build.0 = Debug|Any CPU {97290BD0-CCF0-48CF-95F2-B1A9F6C3EE9F}.Release|Any CPU.ActiveCfg = Release|Any CPU {97290BD0-CCF0-48CF-95F2-B1A9F6C3EE9F}.Release|Any CPU.Build.0 = Release|Any CPU - {A4710B49-EB5D-4E6E-A515-AE73AC9773CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A4710B49-EB5D-4E6E-A515-AE73AC9773CF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A4710B49-EB5D-4E6E-A515-AE73AC9773CF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A4710B49-EB5D-4E6E-A515-AE73AC9773CF}.Release|Any CPU.Build.0 = Release|Any CPU - {9E6EA8DE-F1E9-4DC0-8E9C-EDCAF0E44FA7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9E6EA8DE-F1E9-4DC0-8E9C-EDCAF0E44FA7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9E6EA8DE-F1E9-4DC0-8E9C-EDCAF0E44FA7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9E6EA8DE-F1E9-4DC0-8E9C-EDCAF0E44FA7}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -79,7 +67,6 @@ Global {9BF85579-75BF-4D44-953A-46FAFCD814C0} = {AEB02F96-2A15-4740-84CB-6F7E36F85062} {33760FFE-9F43-46BE-8F64-ED34AE6B798C} = {AEB02F96-2A15-4740-84CB-6F7E36F85062} {97290BD0-CCF0-48CF-95F2-B1A9F6C3EE9F} = {AEB02F96-2A15-4740-84CB-6F7E36F85062} - {A4710B49-EB5D-4E6E-A515-AE73AC9773CF} = {AEB02F96-2A15-4740-84CB-6F7E36F85062} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {62909FEB-64D4-42B9-845A-E7E1AAD5F331} From da06d3a49f8692c6bb162433271b87f7634bef60 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Tue, 25 Mar 2025 08:54:11 +0100 Subject: [PATCH 02/11] build NUnit4 constraints explicitly on .NET >= 6 --- appveyor.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 298dbbf..2bb254a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -29,18 +29,29 @@ for: - matrix: only: - image: Visual Studio 2017 + before_build: + - dotnet restore XMLUnit.NET.sln + build: + project: XMLUnit.NET.sln + test_script: + - dotnet test src/tests/net-core/XMLUnit.Core.Tests.csproj + - dotnet test src/tests/net-constraints-nunit3/XMLUnit.NUnit3.Constraints.Test.csproj + - dotnet test src/tests/net-placeholders/XMLUnit.Placeholders.Tests.csproj + + - matrix: + only: - image: Visual Studio 2022 - image: Ubuntu2204 before_build: - dotnet restore XMLUnit.NET.sln - - dotnet --version build: project: XMLUnit.NET.sln test_script: - dotnet test src/tests/net-core/XMLUnit.Core.Tests.csproj - dotnet test src/tests/net-constraints-nunit3/XMLUnit.NUnit3.Constraints.Test.csproj - - dotnet test src/tests/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.Test.csproj - dotnet test src/tests/net-placeholders/XMLUnit.Placeholders.Tests.csproj + - dotnet build src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.csproj + - dotnet test src/tests/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.Test.csproj install: - cmd: git submodule update --init From 2b5dddf40ad6a833a7b4fcb7f05896f0ca71e75e Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Tue, 25 Mar 2025 09:07:12 +0100 Subject: [PATCH 03/11] revert attempt to disable build, doesn't work for VS2017 --- .../XMLUnit.NUnit4.Constraints.csproj | 8 +------- src/shared/no-build.targets | 5 ----- .../XMLUnit.NUnit4.Constraints.Test.csproj | 8 +------- 3 files changed, 2 insertions(+), 19 deletions(-) delete mode 100644 src/shared/no-build.targets diff --git a/src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.csproj b/src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.csproj index 56dce2f..2080bf4 100644 --- a/src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.csproj +++ b/src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.csproj @@ -13,9 +13,7 @@ limitations under the License. --> - - - + net6.0;net462 @@ -53,8 +51,4 @@ - - - diff --git a/src/shared/no-build.targets b/src/shared/no-build.targets deleted file mode 100644 index 1c4bcc6..0000000 --- a/src/shared/no-build.targets +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/tests/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.Test.csproj b/src/tests/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.Test.csproj index 1cd4513..73025c7 100644 --- a/src/tests/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.Test.csproj +++ b/src/tests/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.Test.csproj @@ -13,9 +13,7 @@ limitations under the License. --> - - - + net6.0 @@ -57,8 +55,4 @@ - - - From cabadeea4fefc7f0f87d0e2eb6ef910cf1f08435 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 28 Mar 2025 19:11:22 +0100 Subject: [PATCH 04/11] update build instructions --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7e37318..fc3a3ff 100644 --- a/README.md +++ b/README.md @@ -125,8 +125,11 @@ should still support .NET Framework 3.5 and Mono. The `core` library provides all functionality needed to test XML output and hasn't got any dependencies. It uses NUnit 3.x for its own -tests. The core library is complemented by two libaries of NUnit -constraints targeting NUnit 2.x and 3.x respectively. +tests. The core library is complemented by libaries of NUnit +constraints targeting NUnit 2.x, 3.x and 4.x respectively. + +Building NUnit 4.x support requires .NET 6 or .NET Framework 4.6.2 or +newer (the minimal targets supported by NUnit 4.x). ## Checking out XMLUnit.NET @@ -225,6 +228,14 @@ assemblies. In order to run the tests use > dotnet test src/tests/net-placeholders/XMLUnit.Placeholders.Tests.csproj ``` +NUnit4 support is not part of the default solution so the solution can +be built for .NET prior to .NET 6. In order to build and test it, use + +```sh +> dotnet build src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.csproj +> dotnet test src/tests/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.Test.csproj +``` + You may need to specify [`--roll-forward`](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet#rollforward) or From 5536ce819a6d643bb26967d1fe4b542a8244f4ef Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 28 Mar 2025 19:17:42 +0100 Subject: [PATCH 05/11] add NUnit 4 constraints to docs --- .../constraints-nunit4/ns-Org.XmlUnit.Constraints.xml | 6 ++++++ src/doc/monodoc/core/index.xml | 6 +++++- src/doc/monodoc/run-monodoc.sh | 3 +++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/doc/monodoc/constraints-nunit4/ns-Org.XmlUnit.Constraints.xml diff --git a/src/doc/monodoc/constraints-nunit4/ns-Org.XmlUnit.Constraints.xml b/src/doc/monodoc/constraints-nunit4/ns-Org.XmlUnit.Constraints.xml new file mode 100644 index 0000000..f0876cf --- /dev/null +++ b/src/doc/monodoc/constraints-nunit4/ns-Org.XmlUnit.Constraints.xml @@ -0,0 +1,6 @@ + + + NUnit 4.x Constraints on top of XMLUnit's core. + NUnit 4.x Constraints on top of XMLUnit's core. + + diff --git a/src/doc/monodoc/core/index.xml b/src/doc/monodoc/core/index.xml index 0d47545..8891d13 100644 --- a/src/doc/monodoc/core/index.xml +++ b/src/doc/monodoc/core/index.xml @@ -15,6 +15,10 @@ contains NUnit 3.x constraints on top of XMLUnit.Core. + XMLUnit.NUnit4.Constraints + contains NUnit 4.x + constraints on top of XMLUnit.Core. While XMLUnit is focussed on testing, parts of it may be useful @@ -58,5 +62,5 @@ under the Apache License, Version 2.0. - XMLUnit.NET 2.10.1 + XMLUnit.NET 2.11.0 diff --git a/src/doc/monodoc/run-monodoc.sh b/src/doc/monodoc/run-monodoc.sh index a3918f9..e7f9b0c 100755 --- a/src/doc/monodoc/run-monodoc.sh +++ b/src/doc/monodoc/run-monodoc.sh @@ -15,6 +15,9 @@ cp -r "$MY_DIR/core" "$MY_DIR/placeholders" "$MY_DIR/constraints-nunit2" "$MY_DI monodocer -pretty -importslashdoc:"$DEBUG_DIR/xmlunit-core.xml"\ -assembly:"$DEBUG_DIR/xmlunit-core.dll"\ -path:"$OUT_DIR/core" +monodocer -pretty -importslashdoc:"$DEBUG_DIR/xmlunit-nunit4-constraints.xml"\ + -assembly:"$DEBUG_DIR/xmlunit-nunit4-constraints.dll"\ + -path:"$OUT_DIR/constraints-nunit4" monodocer -pretty -importslashdoc:"$DEBUG_DIR/xmlunit-nunit3-constraints.xml"\ -assembly:"$DEBUG_DIR/xmlunit-nunit3-constraints.dll"\ -path:"$OUT_DIR/constraints-nunit3" From a72b134ba652716d245b90bdff10e5f165c8d019 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 28 Mar 2025 19:32:26 +0100 Subject: [PATCH 06/11] try building nunit 4 constraints with msbuild as well --- ...nit.NUnit4.Constraints.NetFramework.csproj | 89 +++++++++++++++++++ .../NetFramework/packages.config | 4 + 2 files changed, 93 insertions(+) create mode 100644 src/main/net-constraints-nunit4/NetFramework/XMLUnit.NUnit4.Constraints.NetFramework.csproj create mode 100644 src/main/net-constraints-nunit4/NetFramework/packages.config diff --git a/src/main/net-constraints-nunit4/NetFramework/XMLUnit.NUnit4.Constraints.NetFramework.csproj b/src/main/net-constraints-nunit4/NetFramework/XMLUnit.NUnit4.Constraints.NetFramework.csproj new file mode 100644 index 0000000..cfe57d4 --- /dev/null +++ b/src/main/net-constraints-nunit4/NetFramework/XMLUnit.NUnit4.Constraints.NetFramework.csproj @@ -0,0 +1,89 @@ + + + + + Debug + AnyCPU + {B0EA2DD8-D0BC-4B55-B17A-E3EE17D6C718} + Library + false + xmlunit-nunit4-constraints + v4.6.2 + 512 + ..\..\..\..\ + true + + + true + full + false + ..\..\..\..\build\NetFramework\bin\Debug + DEBUG;TRACE + prompt + 4 + ..\..\..\..\build\NetFramework\bin\Debug\xmlunit-nunit4-constraints.xml + + + pdbonly + true + ..\..\..\..\build\NetFramework\bin\Release + TRACE + prompt + 4 + ..\..\..\..\build\NetFramework\bin\Release\xmlunit-nunit4-constraints.xml + + + true + + + ..\..\..\..\xmlunit.snk + + + Org.XmlUnit.Constraints + + + + ..\..\..\..\packages\NUnit.4.3.2\lib\net462\nunit.framework.dll + True + + + + + + + + + {97960a9c-7e2b-4548-90bd-31105c54e129} + XMLUnit.Core + + + + + ..\CommonAssemblyInfo.cs + + + + + + + + + + + + + + + diff --git a/src/main/net-constraints-nunit4/NetFramework/packages.config b/src/main/net-constraints-nunit4/NetFramework/packages.config new file mode 100644 index 0000000..e8e6254 --- /dev/null +++ b/src/main/net-constraints-nunit4/NetFramework/packages.config @@ -0,0 +1,4 @@ + + + + From 467551e191606e5ed56f926c7a8bb21b9882d722 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 28 Mar 2025 20:13:14 +0100 Subject: [PATCH 07/11] fix monodoc --- src/doc/monodoc/run-monodoc.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/doc/monodoc/run-monodoc.sh b/src/doc/monodoc/run-monodoc.sh index e7f9b0c..651f168 100755 --- a/src/doc/monodoc/run-monodoc.sh +++ b/src/doc/monodoc/run-monodoc.sh @@ -10,7 +10,7 @@ OUT_DIR="$BUILD/doc" HTML_DIR="$BUILD/html" rm -rf "$OUT_DIR" "$HTML_DIR" mkdir -p "$OUT_DIR" -cp -r "$MY_DIR/core" "$MY_DIR/placeholders" "$MY_DIR/constraints-nunit2" "$MY_DIR/constraints-nunit3" "$OUT_DIR" +cp -r "$MY_DIR/core" "$MY_DIR/placeholders" "$MY_DIR/constraints-nunit2" "$MY_DIR/constraints-nunit3" "$MY_DIR/constraints-nunit4" "$OUT_DIR" monodocer -pretty -importslashdoc:"$DEBUG_DIR/xmlunit-core.xml"\ -assembly:"$DEBUG_DIR/xmlunit-core.dll"\ @@ -28,5 +28,4 @@ monodocer -pretty -importslashdoc:"$DEBUG_DIR/xmlunit-placeholders.xml"\ -assembly:"$DEBUG_DIR/xmlunit-placeholders.dll"\ -path:"$OUT_DIR/placeholders" -monodocs2html -out "$HTML_DIR" "$OUT_DIR/core" "$OUT_DIR/constraints-nunit3" "$OUT_DIR/constraints-nunit2" "$OUT_DIR/placeholders" - +monodocs2html -out "$HTML_DIR" "$OUT_DIR/core" "$OUT_DIR/constraints-nunit4" "$OUT_DIR/constraints-nunit3" "$OUT_DIR/constraints-nunit2" "$OUT_DIR/placeholders" From a314a3652a3f6207c0a5535fc99283903bd7035d Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 28 Mar 2025 20:15:16 +0100 Subject: [PATCH 08/11] prepare next release --- RELEASE_NOTES.md | 6 +++++- src/shared/CommonAssemblyInfo.cs | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 96ab10a..592489f 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,10 @@ # Release Notes -## XMLUnit.NET 2.10.1 - /not released, yet/ +## XMLUnit.NET 2.11.0 - /Released 2025-03-28/ + +* introduced a new constraints library for NUnit 4.x as the NUnit 3.x + constraints can not be used with NUnit 4.x at all. + Issue [#42](https://github.com/xmlunit/xmlunit.net/issues/42). ## XMLUnit.NET 2.10.0 - /Released 2024-08-08/ diff --git a/src/shared/CommonAssemblyInfo.cs b/src/shared/CommonAssemblyInfo.cs index b165a11..cc3fc52 100644 --- a/src/shared/CommonAssemblyInfo.cs +++ b/src/shared/CommonAssemblyInfo.cs @@ -26,7 +26,7 @@ namespace Org.XmlUnit internal static class XmlUnitVersion { internal const string ApiVersion = "2.11.0"; - internal const string AssemblyVersion = ApiVersion + ".256"; + internal const string AssemblyVersion = ApiVersion + ".283"; internal const string Version = ApiVersion + "-alpha"; } } From b5aae0bfb1c43b2cd7559638a48b1d400c5dd9f9 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 28 Mar 2025 20:31:09 +0100 Subject: [PATCH 09/11] forgot nuspec file --- .../XMLUnit.NUnit4.Constraints.nuspec | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.nuspec diff --git a/src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.nuspec b/src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.nuspec new file mode 100644 index 0000000..50eed4c --- /dev/null +++ b/src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.nuspec @@ -0,0 +1,34 @@ + + + + XMLUnit.NUnit4.Constraints + $version$ + XMLUnit Constraints for NUnit 4. + XMLUnit Contributors + + https://www.xmlunit.org/ + Apache-2.0 + false + This package contains NUnit 4.x Constraints to be used with XMLUnit.NET's core. + XMLUnit provides you with the tools to verify the XML you emit is the one you want to create. + It provides helpers to validate against an XML Schema, assert the values of XPath queries or compare XML documents against expected outcomes. + NUnit 4.x Constraints Classes of XMLUnit.NET + + + + + + + + + xmlunit xml unit-testing test xmldiff nunit nunit3 + + + + + + + + + + From db5f3d78c0847455d8437210e23d156fcd7471a3 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 28 Mar 2025 20:33:44 +0100 Subject: [PATCH 10/11] typo --- .../net-constraints-nunit4/XMLUnit.NUnit4.Constraints.nuspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.nuspec b/src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.nuspec index 50eed4c..fdf51f4 100644 --- a/src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.nuspec +++ b/src/main/net-constraints-nunit4/XMLUnit.NUnit4.Constraints.nuspec @@ -27,7 +27,7 @@ - + From a01f4b68e688fc209e8d5542768e33fa08ca9ce1 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 28 Mar 2025 21:00:11 +0100 Subject: [PATCH 11/11] next release cycle --- RELEASE_NOTES.md | 2 ++ appveyor.yml | 2 +- create-dist.sh | 6 +++++- src/doc/monodoc/core/index.xml | 2 +- src/shared/CommonAssemblyInfo.cs | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 592489f..a4bd56a 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,7 @@ # Release Notes +## XMLUnit.NET 2.11.1 - /Not Released, yet/ + ## XMLUnit.NET 2.11.0 - /Released 2025-03-28/ * introduced a new constraints library for NUnit 4.x as the NUnit 3.x diff --git a/appveyor.yml b/appveyor.yml index 2bb254a..98d9c27 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 2.11.0.{build} +version: 2.11.1.{build} image: - Ubuntu2204 diff --git a/create-dist.sh b/create-dist.sh index 32519bc..840fb55 100755 --- a/create-dist.sh +++ b/create-dist.sh @@ -26,8 +26,12 @@ cp README.md LICENSE RELEASE_NOTES.md build/bindist-tmp/xmlunit-$1 for d in Debug Release; do mkdir -p build/bindist-tmp/xmlunit-$1/NetFramework/$d mkdir -p build/bindist-tmp/xmlunit-$1/netstandard2.0/$d + mkdir -p build/bindist-tmp/xmlunit-$1/net6.0/$d + mkdir -p build/bindist-tmp/xmlunit-$1/net462/$d cp build/NetFramework/bin/$d/xmlunit-* build/bindist-tmp/xmlunit-$1/NetFramework/$d cp build/bin/$d/netstandard2.0/xmlunit-* build/bindist-tmp/xmlunit-$1/netstandard2.0/$d + cp build/bin/$d/net6.0/xmlunit-* build/bindist-tmp/xmlunit-$1/net6.0/$d + cp build/bin/$d/net462/xmlunit-* build/bindist-tmp/xmlunit-$1/net462/$d done mkdir build/bindist-tmp/xmlunit-$1/apidocs cp -r build/NetFramework/html/* build/bindist-tmp/xmlunit-$1/apidocs @@ -53,5 +57,5 @@ mv xmlunit-$1-src.* .. cd .. for i in *.zip *.tar.gz *.tar.bz2; do sha256sum $i > $i.sha256 - gpg --detach-sign --armor $i + gpg --detach-sign --armor --use-agent $i done diff --git a/src/doc/monodoc/core/index.xml b/src/doc/monodoc/core/index.xml index 8891d13..6c3185e 100644 --- a/src/doc/monodoc/core/index.xml +++ b/src/doc/monodoc/core/index.xml @@ -62,5 +62,5 @@ under the Apache License, Version 2.0. - XMLUnit.NET 2.11.0 + XMLUnit.NET 2.11.1 diff --git a/src/shared/CommonAssemblyInfo.cs b/src/shared/CommonAssemblyInfo.cs index cc3fc52..e983d88 100644 --- a/src/shared/CommonAssemblyInfo.cs +++ b/src/shared/CommonAssemblyInfo.cs @@ -25,7 +25,7 @@ namespace Org.XmlUnit { internal static class XmlUnitVersion { - internal const string ApiVersion = "2.11.0"; + internal const string ApiVersion = "2.11.1"; internal const string AssemblyVersion = ApiVersion + ".283"; internal const string Version = ApiVersion + "-alpha"; }