Skip to content

v0.3.6

Compare
Choose a tag to compare
@esotericpig esotericpig released this 03 Apr 13:44
· 31 commits to master since this release

BotBuddy now implements AutoCloseable so that you can use try-with-resource:

// This will automatically call buddy.releasePressed() for you
try(BotBuddy buddy = BotBuddy.builder().build()) {
  // ...
}