Skip to content

Commit 473c2dc

Browse files
committed
this is not a bugfix release anymore
1 parent 6e334a4 commit 473c2dc

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

RELEASE_NOTES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release Notes
22

3-
## XMLUnit.NET 2.9.3 - /not released, yet/
3+
## XMLUnit.NET 2.10.0 - /not released, yet/
44

55
* add a new `ElementSelectors.ByNameAndAllAttributes` variant that filters attributes before deciding whether elements can
66
be compared.
@@ -16,7 +16,7 @@
1616
are considered whitespace by the [XML
1717
Specification](https://www.w3.org/TR/xml11/#NT-S) from textual
1818
content.
19-
Issue [xmlunit/#260](https://github.com/xmlunit/xmlunit/issues/260).
19+
Issue [#39](https://github.com/xmlunit/xmlunit.net/issues/39).
2020

2121
## XMLUnit.NET 2.9.2 - /Released 2023-03-16/
2222

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.9.3.{build}
1+
version: 2.10.0.{build}
22

33
image:
44
- Ubuntu2004

src/doc/monodoc/core/index.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@
5858
under <format type="text/html"><a href="https://github.com/xmlunit/xmlunit.net/blob/main/LICENSE">the
5959
Apache License, Version 2.0</a></format>.</para></Remarks>
6060
<Copyright></Copyright>
61-
<Title>XMLUnit.NET 2.9.3</Title>
61+
<Title>XMLUnit.NET 2.10.0</Title>
6262
</Overview>

src/main/net-core/Diff/ElementSelectors.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ public static bool ByNameAndAllAttributes(XmlElement controlElement,
172172
/// </summary>
173173
/// <remarks>
174174
/// <para>
175-
/// since XMLUnit 2.9.3
175+
/// since XMLUnit 2.10.0
176176
/// </para>
177177
/// </remarks>
178178
public static ElementSelector ByNameAndAllAttributes(Predicate<XmlAttribute> attributeFiler) {

src/main/net-core/Input/XmlWhitespaceStrippedSource.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ namespace Org.XmlUnit.Input {
2929
/// other text nodes alone you should use
3030
/// ElementContentWhitespaceStrippedSource instead.
3131
/// </para>
32+
/// <para>
33+
/// since XMLUnit 2.10.0
34+
/// </para>
3235
/// </remarks>
3336
public class XmlWhitespaceStrippedSource : DOMSource {
3437
/// <summary>

src/main/net-core/Util/Nodes.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public static IDictionary<XmlQualifiedName, string>
6060
/// </summary>
6161
/// <remarks>
6262
/// <para>
63-
/// since XMLUnit 2.9.3
63+
/// since XMLUnit 2.10.0
6464
/// </para>
6565
/// </remarks>
6666
public static IDictionary<XmlQualifiedName, string>
@@ -96,6 +96,9 @@ public static XmlNode StripWhitespace(XmlNode original) {
9696
/// characters XML considers whitespace according to
9797
/// <see href="https://www.w3.org/TR/xml11/#NT-S"/>.
9898
/// </summary>
99+
/// <para>
100+
/// since XMLUnit 2.10.0
101+
/// </para>
99102
public static XmlNode StripXmlWhitespace(XmlNode original) {
100103
XmlNode cloned = original.CloneNode(true);
101104
cloned.Normalize();
@@ -173,8 +176,6 @@ private static String XmlTrimValue(XmlNode n) {
173176
/// Trims textual content of this node, removes empty text and
174177
/// CDATA children, recurses into its child nodes.
175178
/// </summary>
176-
/// <parameter name="normalize">whether to normalize
177-
/// whitespace as well</parameter>
178179
private static void HandleWsRec(XmlNode n, Func<XmlNode, String> handleWs) {
179180
if (n is XmlCharacterData || n is XmlProcessingInstruction) {
180181
n.Value = handleWs(n);

src/shared/CommonAssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace Org.XmlUnit
2525
{
2626
internal static class XmlUnitVersion
2727
{
28-
internal const string ApiVersion = "2.9.3";
28+
internal const string ApiVersion = "2.10.0";
2929
internal const string AssemblyVersion = ApiVersion + ".241";
3030
internal const string Version = ApiVersion + "-alpha";
3131
}

0 commit comments

Comments
 (0)