From 16cbc07c9c7f9891726d9afb8f090a02b6565abb Mon Sep 17 00:00:00 2001 From: Maybe Waffle Date: Sun, 26 Jun 2022 21:59:27 +0400 Subject: [PATCH] Update changelog & supported API version --- CHANGELOG.md | 1 + README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bee843cd..271b4386 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - `InlineKeyboardButton::{pay, login, web_app, callback_game, pay}` constructors ([#231][pr231]) +- Support for Telegram Bot API [version 6.1](https://core.telegram.org/bots/api#june-20-2022) ([#233][pr233]) ### Fixed diff --git a/README.md b/README.md index 88420ef0..46992ce0 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ - + diff --git a/src/lib.rs b/src/lib.rs index da97ab3d..52bbb4a9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ //! Core part of the [`teloxide`] library. //! //! This library provides tools for making requests to the [Telegram Bot API] -//! (Currently, version `6.0` is supported) with ease. The library is fully +//! (Currently, version `6.1` is supported) with ease. The library is fully //! asynchronous and built using [`tokio`]. //! //!```toml