Skip to content

Commit

Permalink
Version 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Jun 2, 2023
1 parent 6f96061 commit 257332c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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.8.0'
implementation 'org.plumelib:plume-util:1.8.1'
}
```

Other build systems are [similar](https://search.maven.org/artifact/org.plumelib/plume-util/1.8.0/jar).
Other build systems are [similar](https://search.maven.org/artifact/org.plumelib/plume-util/1.8.1/jar).
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ if (project.hasProperty('cfLocal')) {
checkerFramework files(cfHome + '/checker/dist/checker.jar')
}
} else if (false) {
// use a snapshot version of the Checker Framework.
// To use a snapshot version of the Checker Framework.
// TODO: Change the above test to false when CF is released.
ext.checkerFrameworkVersion = '3.34.1-SNAPSHOT'
dependencies {
Expand Down
8 changes: 4 additions & 4 deletions gradle/mavencentral.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// ossrhPassword=YOUR_PASSWORD_HERE

// To make a release (run on any filesystem, except the last step):
// * Make a local snapshot release and test it on some clients.
// * Make a local snapshot release and test it on some clients, such as the Checker Framework.
// * git pull
// * In ../build.gradle, ensure that "To use a snapshot version" is not enabled.
// * Update the version number in ../README.md and in this file (multiple times in each).
Expand All @@ -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.8.0 && 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.8.0", use the text from ../CHANGELOG.md as the description, attach the .jar and -all.jar files from ../build/libs/ .
// VER=1.8.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.8.1", 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.8.1-SNAPSHOT'
version '1.8.1'

final isSnapshot = version.contains('SNAPSHOT')

Expand Down

0 comments on commit 257332c

Please sign in to comment.