Skip to content

Commit

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

## 1.1.12 (May 28, 2021)

- Fix exception handler processing for insert instruction list

## 1.1.11 (May 5, 2021)

- SimpleLog supports logging to a file
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.11'
implementation 'org.plumelib:bcel-util:1.1.12'
}
```

Other build systems are [similar](https://search.maven.org/artifact/org.plumelib/bcel-util/1.1.11/jar).
Other build systems are [similar](https://search.maven.org/artifact/org.plumelib/bcel-util/1.1.12/jar).
6 changes: 3 additions & 3 deletions gradle/mavencentral.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
// * Browse to https://oss.sonatype.org/#stagingRepositories, complete the Maven Central release.
// * Stage changes.
// * Add a git tag:
// VER=1.1.11 && 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.11", use the text from ../CHANGELOG.md as the description, attach the .jar file from ../build/libs/
// VER=1.1.12 && 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.12", use the text from ../CHANGELOG.md as the description, attach the .jar file from ../build/libs/


///////////////////////////////////////////////////////////////////////////
Expand All @@ -26,7 +26,7 @@ apply plugin: 'signing'

group = "org.plumelib"
archivesBaseName = "bcel-util"
version = "1.1.11"
version = "1.1.12"

task javadocJar(type: Jar) {
classifier = 'javadoc'
Expand Down

0 comments on commit 1f8fed6

Please sign in to comment.