From 72b34d0ea3f236bc5b62ded41a55b4c0c6874674 Mon Sep 17 00:00:00 2001 From: Andrey Brusnik Date: Sun, 21 Jul 2024 17:22:23 +0400 Subject: [PATCH] Bump supported TBA version to 7.0 in crates docs --- crates/teloxide-core/src/lib.rs | 2 +- crates/teloxide/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/teloxide-core/src/lib.rs b/crates/teloxide-core/src/lib.rs index a2b8f688..2bc732ae 100644 --- a/crates/teloxide-core/src/lib.rs +++ b/crates/teloxide-core/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.9` is supported) with ease. The library is fully +//! (Currently, version `7.0` is supported) with ease. The library is fully //! asynchronous and built using [`tokio`]. //! //!```toml diff --git a/crates/teloxide/src/lib.rs b/crates/teloxide/src/lib.rs index 7be22d58..097643af 100644 --- a/crates/teloxide/src/lib.rs +++ b/crates/teloxide/src/lib.rs @@ -1,6 +1,6 @@ //! A full-featured framework that empowers you to easily build [Telegram bots] //! using [Rust]. It handles all the difficult stuff so you can focus only on -//! your business logic. Currently, version `6.9` of [Telegram Bot API] is +//! your business logic. Currently, version `7.0` of [Telegram Bot API] is //! supported. //! //! For a high-level overview, see [our GitHub repository](https://github.com/teloxide/teloxide).