Skip to content

Commit

Permalink
this is going to be a feature release, not a bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
bodewig committed Mar 29, 2023
1 parent c47d390 commit cd6731e
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Notes

## XMLUnit for Java 2.9.2 - /not released, yet/
## XMLUnit for Java 2.10.0 - /not released, yet/

* add a new `ElementSelectors.byNameAndAllAttributes` variant that filters attributes before deciding whether elements can
be compared.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-parent</artifactId>
<packaging>pom</packaging>
<version>2.9.2-SANPSHOT</version>
<version>2.10.0-SNAPSHOT</version>
<name>org.xmlunit:xmlunit-parent</name>
<description>Parent POM for all artifacts of XMLUnit</description>
<url>https://www.xmlunit.org/</url>
Expand Down
2 changes: 1 addition & 1 deletion xmlunit-assertj/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>xmlunit-parent</artifactId>
<groupId>org.xmlunit</groupId>
<version>2.9.2-SANPSHOT</version>
<version>2.10.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion xmlunit-assertj3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>xmlunit-parent</artifactId>
<groupId>org.xmlunit</groupId>
<version>2.9.2-SANPSHOT</version>
<version>2.10.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion xmlunit-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-parent</artifactId>
<version>2.9.2-SANPSHOT</version>
<version>2.10.0-SNAPSHOT</version>
</parent>

<groupId>org.xmlunit</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public boolean test(Attr a) {
* @param attributeFilter filter to use when comparing attributes. Only attributes where the filter returns {@code
* true} are considered.
*
* @since XMLUnit 2.9.2
* @since XMLUnit 2.10.0
*/
public static final ElementSelector byNameAndAllAttributes(final Predicate<Attr> attributeFilter) {
return new ElementSelector() {
Expand Down
2 changes: 1 addition & 1 deletion xmlunit-core/src/main/java/org/xmlunit/util/Nodes.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public boolean test(Attr a) {
* @param attributeFilter is used to suppress unwanted attributes. Only attributes where the filter's test returns
* {@code true} are returned
* @return attributes
* @since XMLUnit 2.9.2
* @since XMLUnit 2.10.0
*/
public static Map<QName, String> getAttributes(Node n, Predicate<Attr> attributeFilter) {
Map<QName, String> map = new LinkedHashMap<QName, String>();
Expand Down
2 changes: 1 addition & 1 deletion xmlunit-jakarta-jaxb-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>xmlunit-parent</artifactId>
<groupId>org.xmlunit</groupId>
<version>2.9.2-SANPSHOT</version>
<version>2.10.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion xmlunit-legacy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-parent</artifactId>
<version>2.9.2-SANPSHOT</version>
<version>2.10.0-SNAPSHOT</version>
</parent>

<groupId>org.xmlunit</groupId>
Expand Down
2 changes: 1 addition & 1 deletion xmlunit-matchers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-parent</artifactId>
<version>2.9.2-SANPSHOT</version>
<version>2.10.0-SNAPSHOT</version>
</parent>

<groupId>org.xmlunit</groupId>
Expand Down
2 changes: 1 addition & 1 deletion xmlunit-placeholders/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>xmlunit-parent</artifactId>
<groupId>org.xmlunit</groupId>
<version>2.9.2-SANPSHOT</version>
<version>2.10.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit cd6731e

Please sign in to comment.