Skip to content

v0.3.4

Compare
Choose a tag to compare
@esotericpig esotericpig released this 01 Mar 03:14
· 54 commits to master since this release

If your code used one of the following, it will break:

new BotBuddy(...)
new BotBuddy.Builder(...)
new BotBuddy.Stash(Stash)
new BotBuddyCode(...)

Instead, you should use:

BotBuddy.builder().build()
BotBuddy#dup()
BotBuddy.Stash#dup()
BotBuddyCode.builder().build()

The other methods were either removed or made protected so that there would be less init methods to maintain (and therefore less bugs).