Skip to content

Commit

Permalink
Version 1.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Jan 1, 2021
1 parent 4bfa411 commit abedb2e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# BCEL-Util change log

## 1.1.10

- Update dependencies
- Tweak documentation

## 1.1.9

- Fixed bug in stack map processing
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
7 changes: 4 additions & 3 deletions gradle/mavencentral.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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/


///////////////////////////////////////////////////////////////////////////
Expand All @@ -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'
Expand Down

0 comments on commit abedb2e

Please # to comment.