Skip to content

Commit

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

Java 11 or later is required.

## 1.0.7x (2024-03-26)

Support Java 17 syntax.

Support running under JDK 21.

## 1.0.6 (2022-12-02)

Support JDK 19.
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.6"
requireJavadoc "org.plumelib:require-javadoc:1.0.7"
}
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.6 && 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.6", use the text from ../CHANGELOG.md as the description, attach the .jar and -all.jar files from ../build/libs/ .
// 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/ .
// * Finally, run on the CSE filesystem: git pull && ./gradlew javadocWeb

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

group "org.plumelib"
version "1.0.6"
version "1.0.7"

final isSnapshot = version.contains('SNAPSHOT')

Expand Down

0 comments on commit 1e96139

Please sign in to comment.