diff --git a/CHANGELOG.md b/CHANGELOG.md index b6782b3..157282d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # BCEL-Util change log -## 1.2.0 (??) +## 1.2.0 (December 12, 2022) Changed naming convention from snake_case to camelCase, which is idiomatic in Java. This is a huge incompatibility with the previous version, 1.1.16. diff --git a/README.md b/README.md index 936bd57..ad24508 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ In a Gradle buildfile, write ``` dependencies { - implementation 'org.plumelib:bcel-util:1.1.16' + implementation 'org.plumelib:bcel-util:1.2.0' } ``` -Other build systems are [similar](https://search.maven.org/artifact/org.plumelib/bcel-util/1.1.16/jar). +Other build systems are [similar](https://search.maven.org/artifact/org.plumelib/bcel-util/1.2.0/jar). diff --git a/gradle/mavencentral.gradle b/gradle/mavencentral.gradle index b2de875..6e85f36 100644 --- a/gradle/mavencentral.gradle +++ b/gradle/mavencentral.gradle @@ -11,15 +11,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.1.16 && 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 "bcel-util 1.1.16", use the text from ../CHANGELOG.md as the description, attach the .jar file from ../build/libs/ +// VER=1.2.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 "bcel-util 1.2.0", use the text from ../CHANGELOG.md as the description, attach the .jar file 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.1.16' +version '1.2.0' final isSnapshot = version.contains('SNAPSHOT')