Skip to content

Commit

Permalink
Version 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Mar 27, 2024
1 parent d47912b commit 7208ef6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

Java 11 or later is required to run require-javadoc.

## 1.0.8 (2024-03-27)

Bugfix: reinstate support for compiling and running under JDK 8.

## 1.0.7 (2024-03-26)

Support Java 17 syntax.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ configurations {
requireJavadoc
}
dependencies {
requireJavadoc "org.plumelib:require-javadoc:1.0.7"
requireJavadoc "org.plumelib:require-javadoc:1.0.8"
}
task requireJavadoc(type: JavaExec) {
group = 'Documentation'
Expand Down
6 changes: 3 additions & 3 deletions gradle/mavencentral.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
// * Run in the top-level directory: ./gradlew clean publish
// * Browse to https://oss.sonatype.org/#stagingRepositories, complete the Maven Central release.
// * Add a git tag:
// VER=1.0.7 && git commit -m "Version $VER" && git push && git tag -a v$VER -m "Version $VER" && git push && git push --tags
// * Make a GitHub release. Go to the GitHub releases page, make a release, call it "require-javadoc 1.0.7", use the text from ../CHANGELOG.md as the description, attach the .jar and -all.jar files from ../build/libs/ .
// VER=1.0.8 && git commit -m "Version $VER" && git push && git tag -a v$VER -m "Version $VER" && git push && git push --tags
// * Make a GitHub release. Go to the GitHub releases page, make a release, call it "require-javadoc 1.0.8", use the text from ../CHANGELOG.md as the description, attach the .jar and -all.jar files from ../build/libs/ .
// * Finally, run on the CSE filesystem: git pull && ./gradlew javadocWeb

apply plugin: 'maven-publish'
apply plugin: 'signing'

group "org.plumelib"
version "1.0.7"
version "1.0.8"

final isSnapshot = version.contains('SNAPSHOT')

Expand Down
2 changes: 1 addition & 1 deletion src/test/README
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ Tests are not yet automated. :-(

The diff output should be empty:

(cd ../.. && ./gradlew assemble) && sleep .1 && java -cp ../../build/libs/require-javadoc-1.0.7-all.jar org.plumelib.javadoc.RequireJavadoc --relative --dont-require-trivial-properties --dont-require-noarg-constructor > out.txt
(cd ../.. && ./gradlew assemble) && sleep .1 && java -cp ../../build/libs/require-javadoc-1.0.8-all.jar org.plumelib.javadoc.RequireJavadoc --relative --dont-require-trivial-properties --dont-require-noarg-constructor > out.txt

diff expected.txt out.txt

0 comments on commit 7208ef6

Please sign in to comment.