Skip to content

Commit 4e6e0e6

Browse files
committed
Updated dependencies
1 parent 64a3ea3 commit 4e6e0e6

File tree

273 files changed

+1855
-1864
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

273 files changed

+1855
-1864
lines changed

LICENSE-3RD-PARTY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Third-party dependencies
22
* Apache License, Version 2.0:
33
* [Jackson-annotations](https://github.com/FasterXML/jackson)
4-
* [Jackson-core](https://github.com/FasterXML/jackson-core)
5-
* [jackson-databind](https://github.com/FasterXML/jackson)
64
* [error-prone annotations](https://errorprone.info/error_prone_annotations)
75
* [Guava InternalFutureFailureAccess and InternalFutures](https://github.com/google/guava/failureaccess)
86
* [Guava: Google Core Libraries for Java](https://github.com/google/guava)
@@ -19,6 +17,8 @@
1917
* [AssertJ Core](https://assertj.github.io/doc/#assertj-core)
2018
* [jcommander](https://jcommander.org)
2119
* [testng](https://testng.org)
20+
* [Jackson-core](https://github.com/FasterXML/jackson-core)
21+
* [jackson-databind](https://github.com/FasterXML/jackson)
2222
* Eclipse Public License (EPL), Version 1.0:
2323
* [Logback Classic Module](http://logback.qos.ch/logback-classic)
2424
* [Logback Core Module](http://logback.qos.ch/logback-core)

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![build-status](../../workflows/Build/badge.svg)](../../actions?query=workflow%3ABuild)
33
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.cowwoc.requirements/requirements/badge.svg)](https://central.sonatype.com/search?q=g:io.github.cowwoc.requirements)
44
<br>
5-
[![API](https://img.shields.io/badge/api_docs-5B45D5.svg)](https://cowwoc.github.io/requirements.java/12.2/)
5+
[![API](https://img.shields.io/badge/api_docs-5B45D5.svg)](https://cowwoc.github.io/requirements.java/13.0/)
66
[![Changelog](https://img.shields.io/badge/changelog-A345D5.svg)](docs/changelog.md)
77
[![javascript, typescript](https://img.shields.io/badge/other%20languages-javascript,%20typescript-457FD5.svg)](../../../requirements.js)
88

@@ -21,7 +21,7 @@ To get started, add this Maven dependency:
2121
<dependency>
2222
<groupId>io.github.cowwoc.requirements</groupId>
2323
<artifactId>requirements-java</artifactId>
24-
<version>12.2</version>
24+
<version>13.0</version>
2525
</dependency>
2626
```
2727

@@ -31,9 +31,9 @@ To get started, add this Maven dependency:
3131
import java.util.List;
3232
import java.util.StringJoiner;
3333

34-
import static io.github.cowwoc.requirements12.java.DefaultJavaValidators.checkIf;
35-
import static io.github.cowwoc.requirements12.java.DefaultJavaValidators.requireThat;
36-
import static io.github.cowwoc.requirements12.java.DefaultJavaValidators.that;
34+
import static io.github.cowwoc.requirements13.java.DefaultJavaValidators.checkIf;
35+
import static io.github.cowwoc.requirements13.java.DefaultJavaValidators.requireThat;
36+
import static io.github.cowwoc.requirements13.java.DefaultJavaValidators.that;
3737

3838
public final class Cake
3939
{
@@ -151,14 +151,14 @@ This library offers the following features:
151151
Designed for discovery using your favorite IDE's auto-complete feature.
152152
The main entry points are:
153153

154-
* [requireThat(value, name)](https://cowwoc.github.io/requirements.java/12.2/io.github.cowwoc.requirements.java/com/github/cowwoc/requirements12/java/DefaultJavaValidators.html#requireThat(T,java.lang.String))
154+
* [requireThat(value, name)](https://cowwoc.github.io/requirements.java/13.0/io.github.cowwoc.requirements.java/com/github/cowwoc/requirements13/java/DefaultJavaValidators.html#requireThat(T,java.lang.String))
155155
for method preconditions.
156-
* [that(value, name)](https://cowwoc.github.io/requirements.java/12.2/io.github.cowwoc.requirements.java/com/github/cowwoc/requirements12/java/DefaultJavaValidators.html#that(T,java.lang.String))
156+
* [that(value, name)](https://cowwoc.github.io/requirements.java/13.0/io.github.cowwoc.requirements.java/com/github/cowwoc/requirements13/java/DefaultJavaValidators.html#that(T,java.lang.String))
157157
for [class invariants, method postconditions and private methods](docs/features.md#assertion-support).
158-
* [checkIf(value, name)](https://cowwoc.github.io/requirements.java/12.2/io.github.cowwoc.requirements.java/com/github/cowwoc/requirements12/java/DefaultJavaValidators.html#checkIf(T,java.lang.String))
158+
* [checkIf(value, name)](https://cowwoc.github.io/requirements.java/13.0/io.github.cowwoc.requirements.java/com/github/cowwoc/requirements13/java/DefaultJavaValidators.html#checkIf(T,java.lang.String))
159159
for multiple failures and customized error handling.
160160

161-
See the [API documentation](https://cowwoc.github.io/requirements.java/12.2/) for more details.
161+
See the [API documentation](https://cowwoc.github.io/requirements.java/13.0/) for more details.
162162

163163
## Best practices
164164

annotation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.cowwoc.requirements</groupId>
77
<artifactId>requirements</artifactId>
8-
<version>12.2-SNAPSHOT</version>
8+
<version>13.0-SNAPSHOT</version>
99
</parent>
1010
<artifactId>requirements-annotation</artifactId>
1111
<name>requirements-annotation</name>

annotation/src/main/java/io/github/cowwoc/requirements12/annotation/CheckReturnValue.java renamed to annotation/src/main/java/io/github/cowwoc/requirements13/annotation/CheckReturnValue.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
2-
* Copyright (c) 2025 Gili Tzabari
2+
* Copyright (c) 2026 Gili Tzabari
33
* Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
44
*/
5-
package io.github.cowwoc.requirements12.annotation;
5+
package io.github.cowwoc.requirements13.annotation;
66

77
import java.lang.annotation.Target;
88

annotation/src/main/java/module-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Annotations used by the library.
77
*/
88
@SuppressWarnings("JavaModuleNaming")
9-
module io.github.cowwoc.requirements12.annotation
9+
module io.github.cowwoc.requirements13.annotation
1010
{
11-
exports io.github.cowwoc.requirements12.annotation;
11+
exports io.github.cowwoc.requirements13.annotation;
1212
}

benchmark/assertj/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.cowwoc.requirements</groupId>
77
<artifactId>requirements-benchmark</artifactId>
8-
<version>12.2-SNAPSHOT</version>
8+
<version>13.0-SNAPSHOT</version>
99
</parent>
1010
<artifactId>requirements-benchmark-assertj</artifactId>
1111
<name>requirements-benchmark-assertj</name>

benchmark/assertj/src/test/java/io/github/cowwoc/requirements12/benchmark/assertj/AssertJTest.java renamed to benchmark/assertj/src/test/java/io/github/cowwoc/requirements13/benchmark/assertj/AssertJTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
2-
* Copyright (c) 2025 Gili Tzabari
2+
* Copyright (c) 2026 Gili Tzabari
33
* Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
44
*/
5-
package io.github.cowwoc.requirements12.benchmark.assertj;
5+
package io.github.cowwoc.requirements13.benchmark.assertj;
66

77
import org.assertj.core.api.Assertions;
88
import org.assertj.core.api.SoftAssertions;

benchmark/assertj/src/test/java/module-info.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
* Benchmark of equivalent assertj functionality.
77
*/
88
@SuppressWarnings("JavaModuleNaming")
9-
module io.github.cowwoc.requirements12.benchmark.assertj
9+
module io.github.cowwoc.requirements13.benchmark.assertj
1010
{
1111
requires jmh.core;
1212
requires org.testng;
1313
requires org.assertj.core;
1414

15-
exports io.github.cowwoc.requirements12.benchmark.assertj to org.testng;
16-
exports io.github.cowwoc.requirements12.benchmark.assertj.jmh_generated to jmh.core;
15+
exports io.github.cowwoc.requirements13.benchmark.assertj to org.testng;
16+
exports io.github.cowwoc.requirements13.benchmark.assertj.jmh_generated to jmh.core;
1717
}

benchmark/assertj/src/test/resources/logback-test.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
<appender-ref ref="STDOUT"/>
1010
</root>
1111
<logger name="org.testng" level="warn"/>
12-
<logger name="io.github.cowwoc.requirements12.java.internal.terminal.Terminal" level="warn"/>
13-
<logger name="io.github.cowwoc.requirements12.java.internal.util.Exceptions" level="warn"/>
12+
<logger name="io.github.cowwoc.requirements13.java.internal.terminal.Terminal" level="warn"/>
13+
<logger name="io.github.cowwoc.requirements13.java.internal.util.Exceptions" level="warn"/>
1414
</configuration>

benchmark/guava/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.cowwoc.requirements</groupId>
77
<artifactId>requirements-benchmark</artifactId>
8-
<version>12.2-SNAPSHOT</version>
8+
<version>13.0-SNAPSHOT</version>
99
</parent>
1010
<artifactId>requirements-benchmark-guava</artifactId>
1111
<name>requirements-benchmark-guava</name>

0 commit comments

Comments
 (0)