Skip to content

Commit 15be20b

Browse files
authored
Merge pull request #14 from cowwoc/v10.1
v10.1
2 parents a1db00f + c3ff02a commit 15be20b

File tree

18 files changed

+116
-77
lines changed

18 files changed

+116
-77
lines changed

.github/workflows/cla.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
# https://github.com/contributor-assistant/github-action
2020
- name: "CLA Assistant Lite"
2121
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
22-
uses: contributor-assistant/github-action@v2.3.0
22+
uses: contributor-assistant/github-action@v2.6.1
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2325
with:
2426
path-to-signatures: 'cla/version1/signatures/cla.json'
2527
path-to-document: 'https://github.com/cowwoc/requirements.java/blob/master/cla/version1/cla.md' # e.g. a CLA or a DCO document

LICENSE-3RD-PARTY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* [core](https://github.com/cowwoc/pouch/core/)
88
* [annotation](https://github.com/cowwoc/requirements.java/annotation/)
99
* [guava](https://github.com/cowwoc/requirements.java/guava/)
10+
* [jackson](https://github.com/cowwoc/requirements.java/jackson/)
1011
* [java](https://github.com/cowwoc/requirements.java/java/)
1112
* [FindBugs-jsr305](http://findbugs.sourceforge.net/)
1213
* [error-prone annotations](https://errorprone.info/error_prone_annotations)

annotation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.cowwoc.requirements</groupId>
66
<artifactId>root</artifactId>
7-
<version>10.1-SNAPSHOT</version>
7+
<version>10.2-SNAPSHOT</version>
88
</parent>
99
<artifactId>annotation</artifactId>
1010
<packaging>jar</packaging>

benchmark/assertj/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.cowwoc.requirements</groupId>
66
<artifactId>benchmark</artifactId>
7-
<version>10.1-SNAPSHOT</version>
7+
<version>10.2-SNAPSHOT</version>
88
</parent>
99
<artifactId>benchmark.assertj</artifactId>
1010
<packaging>jar</packaging>

benchmark/guava/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.cowwoc.requirements</groupId>
66
<artifactId>benchmark</artifactId>
7-
<version>10.1-SNAPSHOT</version>
7+
<version>10.2-SNAPSHOT</version>
88
</parent>
99
<artifactId>benchmark.guava</artifactId>
1010
<packaging>jar</packaging>

benchmark/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.cowwoc.requirements</groupId>
66
<artifactId>benchmark</artifactId>
7-
<version>10.1-SNAPSHOT</version>
7+
<version>10.2-SNAPSHOT</version>
88
</parent>
99
<artifactId>benchmark.java</artifactId>
1010
<packaging>jar</packaging>

benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.cowwoc.requirements</groupId>
66
<artifactId>root</artifactId>
7-
<version>10.1-SNAPSHOT</version>
7+
<version>10.2-SNAPSHOT</version>
88
</parent>
99
<artifactId>benchmark</artifactId>
1010
<packaging>pom</packaging>

build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.cowwoc.requirements</groupId>
66
<artifactId>root</artifactId>
7-
<version>10.1-SNAPSHOT</version>
7+
<version>10.2-SNAPSHOT</version>
88
</parent>
99
<artifactId>build</artifactId>
1010
<description>Files related to building the project</description>

docs/Changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
See https://github.com/cowwoc/requirements.java/commits/master for a full list.
44

5+
## Version 10.1 - 2024/12/06
6+
7+
* Improvements
8+
* When referencing to a variable number of elements, always use the plural form of a type (e.g.
9+
`actual must contain X entries` even if `X` is one).
10+
* Added special handling for `Collection.contains(Object)` throwing `NullPointerException` because the
11+
collection does not permit null elements.
12+
513
## Version 10.0 - 2024/10/31
614

715
* Breaking changes:

guava/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.github.cowwoc.requirements</groupId>
66
<artifactId>root</artifactId>
7-
<version>10.1-SNAPSHOT</version>
7+
<version>10.2-SNAPSHOT</version>
88
</parent>
99
<artifactId>guava</artifactId>
1010
<packaging>jar</packaging>

0 commit comments

Comments
 (0)