diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a9c112..2839c5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.19.1 (2022-07-09) + + * Fix status field of banned chat members [#78](https://github.com/ayrat555/frankenstein/pull/78) + ## 0.19.0 (2022-07-06) * Add builders for api clients [#77](https://github.com/ayrat555/frankenstein/pull/77) diff --git a/Cargo.toml b/Cargo.toml index 7a0bd7f..d5ad229 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frankenstein" -version = "0.19.0" +version = "0.19.1" authors = ["Ayrat Badykov "] description = "Telegram bot API client for Rust" edition = "2018" diff --git a/README.md b/README.md index 4369a0e..215d6ae 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,7 @@ AsyncApi::builder().api_url(api_url).client(client).build() ### Documentation -Frankenstein implements all telegram bot api methods. To see which parameters you should pass, check [docs.rs](https://docs.rs/frankenstein/0.19.0/frankenstein/api_traits/telegram_api/trait.TelegramApi.html#provided-methods) +Frankenstein implements all telegram bot api methods. To see which parameters you should pass, check [docs.rs](https://docs.rs/frankenstein/0.19.1/frankenstein/api_traits/telegram_api/trait.TelegramApi.html#provided-methods) You can check out a real world bot created using this library - [El Monitorro](https://github.com/ayrat555/el_monitorro). El Monitorro is a feed reader bot.