Skip to content

Commit

Permalink
Version 1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Apr 7, 2024
1 parent 664009c commit 17f8941
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
6 changes: 3 additions & 3 deletions gradle/mavencentral.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@
// * 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.

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

group 'org.plumelib'
version '1.9.1'
version '1.9.2'

final isSnapshot = version.contains('SNAPSHOT')

Expand Down

0 comments on commit 17f8941

Please sign in to comment.