Skip to content

Commit 6cf5d59

Browse files
committed
* Publish new Javadoc on release.
* Changed version number from 10.0.0 to 10.0.
1 parent 6b88755 commit 6cf5d59

File tree

17 files changed

+27
-28
lines changed

17 files changed

+27
-28
lines changed

.github/workflows/deploy_to_maven_central.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,13 @@ jobs:
154154
155155
- name: Generate Javadoc
156156
run: |
157-
./mvnw --batch-mode -V -e verify javadoc:aggregate -pl !dropwizard,!jersey
157+
./mvnw --batch-mode -V -e verify javadoc:aggregate
158158
mkdir --parents "${{ needs.open-release.outputs.VERSION }}/docs"
159159
mv target/reports/apidocs "${{ needs.open-release.outputs.VERSION }}/docs/api"
160160
161161
- name: Commit changes
162162
run: |
163-
git checkout gh-pages
163+
git checkout gh-pages -f
164164
echo "INITIAL_GH_PAGES_POSITION=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
165165
git add "${{ needs.open-release.outputs.VERSION }}/docs/api"
166166
git commit -m "Released version ${{ needs.open-release.outputs.VERSION }}"

LICENSE-3RD-PARTY.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
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/)
1110
* [java](https://github.com/cowwoc/requirements.java/java/)
1211
* [FindBugs-jsr305](http://findbugs.sourceforge.net/)
1312
* [error-prone annotations](https://errorprone.info/error_prone_annotations)

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# <img src="docs/checklist.svg" width=64 height=64 alt="checklist"> Requirements API
55

6-
[![API](https://img.shields.io/badge/api_docs-5B45D5.svg)](https://cowwoc.github.io/requirements.java/10.0.0/docs/api/)
6+
[![API](https://img.shields.io/badge/api_docs-5B45D5.svg)](https://cowwoc.github.io/requirements.java/10.0/docs/api/)
77
[![Changelog](https://img.shields.io/badge/changelog-A345D5.svg)](docs/Changelog.md)
88
[![javascript, typescript](https://img.shields.io/badge/other%20languages-javascript,%20typescript-457FD5.svg)](../../../requirements.js)
99

@@ -22,7 +22,7 @@ To get started, add this Maven dependency:
2222
<dependency>
2323
<groupId>com.github.cowwoc.requirements</groupId>
2424
<artifactId>java</artifactId>
25-
<version>10.0.0</version>
25+
<version>10.0</version>
2626
</dependency>
2727
```
2828

@@ -152,14 +152,14 @@ This library offers the following features:
152152
Designed for discovery using your favorite IDE's auto-complete feature.
153153
The main entry points are:
154154

155-
* [requireThat(value, name)](https://cowwoc.github.io/requirements.java/10.0.0/docs/api/com.github.cowwoc.requirements.java/com/github/cowwoc/requirements10/java/DefaultJavaValidators.html#requireThat(T,java.lang.String))
155+
* [requireThat(value, name)](https://cowwoc.github.io/requirements.java/10.0/docs/api/com.github.cowwoc.requirements.java/com/github/cowwoc/requirements10/java/DefaultJavaValidators.html#requireThat(T,java.lang.String))
156156
for method preconditions.
157-
* [that(value, name)](https://cowwoc.github.io/requirements.java/10.0.0/docs/api/com.github.cowwoc.requirements.java/com/github/cowwoc/requirements10/java/DefaultJavaValidators.html#that(T,java.lang.String))
157+
* [that(value, name)](https://cowwoc.github.io/requirements.java/10.0/docs/api/com.github.cowwoc.requirements.java/com/github/cowwoc/requirements10/java/DefaultJavaValidators.html#that(T,java.lang.String))
158158
for [class invariants, method postconditions and private methods](docs/Features.md#assertion-support).
159-
* [checkIf(value, name)](https://cowwoc.github.io/requirements.java/10.0.0/docs/api/com.github.cowwoc.requirements.java/com/github/cowwoc/requirements10/java/DefaultJavaValidators.html#checkIf(T,java.lang.String))
159+
* [checkIf(value, name)](https://cowwoc.github.io/requirements.java/10.0/docs/api/com.github.cowwoc.requirements.java/com/github/cowwoc/requirements10/java/DefaultJavaValidators.html#checkIf(T,java.lang.String))
160160
for multiple failures and customized error handling.
161161

162-
See the [API documentation](https://cowwoc.github.io/requirements.java/10.0.0/docs/api/) for more details.
162+
See the [API documentation](https://cowwoc.github.io/requirements.java/10.0/docs/api/) for more details.
163163

164164
## Best practices
165165

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>com.github.cowwoc.requirements</groupId>
77
<artifactId>root</artifactId>
8-
<version>10.0.0-SNAPSHOT</version>
8+
<version>10.0-SNAPSHOT</version>
99
</parent>
1010
<artifactId>annotation</artifactId>
1111
<packaging>jar</packaging>

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>com.github.cowwoc.requirements</groupId>
77
<artifactId>benchmark</artifactId>
8-
<version>10.0.0-SNAPSHOT</version>
8+
<version>10.0-SNAPSHOT</version>
99
</parent>
1010
<artifactId>benchmark.assertj</artifactId>
1111
<packaging>jar</packaging>

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>com.github.cowwoc.requirements</groupId>
77
<artifactId>benchmark</artifactId>
8-
<version>10.0.0-SNAPSHOT</version>
8+
<version>10.0-SNAPSHOT</version>
99
</parent>
1010
<artifactId>benchmark.guava</artifactId>
1111
<packaging>jar</packaging>

benchmark/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.cowwoc.requirements</groupId>
77
<artifactId>benchmark</artifactId>
8-
<version>10.0.0-SNAPSHOT</version>
8+
<version>10.0-SNAPSHOT</version>
99
</parent>
1010
<artifactId>benchmark.java</artifactId>
1111
<packaging>jar</packaging>

benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.cowwoc.requirements</groupId>
77
<artifactId>root</artifactId>
8-
<version>10.0.0-SNAPSHOT</version>
8+
<version>10.0-SNAPSHOT</version>
99
</parent>
1010
<artifactId>benchmark</artifactId>
1111
<packaging>pom</packaging>

build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.cowwoc.requirements</groupId>
88
<artifactId>root</artifactId>
9-
<version>10.0.0-SNAPSHOT</version>
9+
<version>10.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>build</artifactId>
1212
<description>Files related to building the project</description>

docs/Changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## Version 10.0.0 - 2024/10/29
5+
## Version 10.0 - 2024/10/31
66

77
* Breaking changes:
88
* The module and package names now contain the major version number of the library,

0 commit comments

Comments
 (0)