diff --git a/CHANGELOG.md b/CHANGELOG.md index 343b3bfc..2d507d7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## unreleased +### Added + +- Support for Telegram Bot API [version 6.2](https://core.telegram.org/bots/api#august-12-2022) ([#251][pr251]) + +[pr251]: https://github.com/teloxide/teloxide-core/pull/251 + ### Changed - **You can now `.await` any `Request`!** ([#249][pr249]) - `Request` now requires `Self: IntoFuture` - There is no need for `AutoSend` anymore - MSRV (Minimal Supported Rust Version) was bumped from `1.58.0` to `1.64.0` +- Refactored `Sticker` and related types ([#251][pr251]) ### Removed diff --git a/README.md b/README.md index 25e08273..1fc5fc94 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ - + diff --git a/src/lib.rs b/src/lib.rs index 5e92048c..9be7e01b 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.1` is supported) with ease. The library is fully +//! (Currently, version `6.2` is supported) with ease. The library is fully //! asynchronous and built using [`tokio`]. //! //!```toml