diff --git a/CHANGELOG.md b/CHANGELOG.md index dea6b084f..7ad8aa657 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ I will do my best to keep this updated with changes as they happen. +## 0.20.0 + +- **(breaking change)** Removed the filters, replaced with new handlers +- **(breaking change)** Removed Granite specific DB includes from models (also commented out `db_persistence.cr`; next update should make persistence better) +- **(breaking change)** Renamed `PagedInlineKeyboard` to `PagedKeyboard` +- Added `RoutedMenu` class for easy menu building + ## 0.19.1 - Replace broken `Int` in unions with `Int::Primitive` @@ -81,4 +88,4 @@ Updated to bot API 4.7 - Add `send_dice` method to client. - Add `BotCommand` model along with `get_my_commands` and `set_my_commands` methods. - Add new sticker/sticker set methods. -- Add `Dice` update action. \ No newline at end of file +- Add `Dice` update action. diff --git a/shard.yml b/shard.yml index 29272874f..9caa27e8b 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: tourmaline -version: 0.19.1 +version: 0.20.0 authors: - Chris Watson diff --git a/src/tourmaline/version.cr b/src/tourmaline/version.cr index 87a30c358..099af54df 100644 --- a/src/tourmaline/version.cr +++ b/src/tourmaline/version.cr @@ -1,3 +1,3 @@ module Tourmaline - VERSION = "0.19.1" + VERSION = "0.20.0" end