From 17f8941d3cb074c04dfd8296875ac603eddef77b Mon Sep 17 00:00:00 2001 From: Michael Ernst Date: Sun, 7 Apr 2024 14:45:39 -0700 Subject: [PATCH] Version 1.9.2 --- README.md | 4 ++-- gradle/mavencentral.gradle | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e81a0aba..a81370d0 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ In a Gradle buildfile, write ``` dependencies { - implementation 'org.plumelib:plume-util:1.9.1' + implementation 'org.plumelib:plume-util:1.9.2' } ``` -Other build systems are [similar](https://search.maven.org/artifact/org.plumelib/plume-util/1.9.1/jar). +Other build systems are [similar](https://search.maven.org/artifact/org.plumelib/plume-util/1.9.2/jar). diff --git a/gradle/mavencentral.gradle b/gradle/mavencentral.gradle index 5fa11419..38f16364 100644 --- a/gradle/mavencentral.gradle +++ b/gradle/mavencentral.gradle @@ -36,8 +36,8 @@ // * 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.9.1 && 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 "plume-util 1.9.1", use the text from ../CHANGELOG.md as the description, attach the .jar and -all.jar files from ../build/libs/ . +// VER=1.9.2 && 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 "plume-util 1.9.2", 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 // * Update clients and test, so that if it's broken we can re-release. @@ -45,7 +45,7 @@ apply plugin: 'maven-publish' apply plugin: 'signing' group 'org.plumelib' -version '1.9.1' +version '1.9.2' final isSnapshot = version.contains('SNAPSHOT')