From abedb2eb0863b1f4d56fd56fe2c075980ade8594 Mon Sep 17 00:00:00 2001 From: Michael Ernst Date: Fri, 1 Jan 2021 07:11:08 -0800 Subject: [PATCH] Version 1.1.10 --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- gradle/mavencentral.gradle | 7 ++++--- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1091873..3c7f3cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # BCEL-Util change log +## 1.1.10 + +- Update dependencies +- Tweak documentation + ## 1.1.9 - Fixed bug in stack map processing diff --git a/README.md b/README.md index 62589d6..15c9882 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ In a Gradle buildfile, write ``` dependencies { - implementation 'org.plumelib:bcel-util:1.1.9' + implementation 'org.plumelib:bcel-util:1.1.10' } ``` -Other build systems are [https://search.maven.org/artifact/org.plumelib/bcel-util/1.1.9/jar](similar). +Other build systems are [https://search.maven.org/artifact/org.plumelib/bcel-util/1.1.10/jar](similar). diff --git a/gradle/mavencentral.gradle b/gradle/mavencentral.gradle index 89a6af1..a8f63e2 100644 --- a/gradle/mavencentral.gradle +++ b/gradle/mavencentral.gradle @@ -8,12 +8,13 @@ // * git pull // * Update the version number in ../README.md and in this file (multiple times in each). // * Update ../CHANGELOG.md . +// * Save files. // * Run in the top-level directory: ./gradlew clean javadocWeb && ./gradlew clean uploadArchives // * Browse to https://oss.sonatype.org/#stagingRepositories, complete the Maven Central release. // * Stage changes. // * Add a git tag: -// VER=1.1.9 && 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.9", use the changelog text as the description, attach the .jar file from ../build/libs/ +// VER=1.1.10 && 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.10", use the changelog text as the description, attach the .jar file from ../build/libs/ /////////////////////////////////////////////////////////////////////////// @@ -25,7 +26,7 @@ apply plugin: 'signing' group = "org.plumelib" archivesBaseName = "bcel-util" -version = "1.1.9" +version = "1.1.10" task javadocJar(type: Jar) { classifier = 'javadoc'