diff --git a/crates/teloxide-core/CHANGELOG.md b/crates/teloxide-core/CHANGELOG.md index c91c4d2b..ff9e154e 100644 --- a/crates/teloxide-core/CHANGELOG.md +++ b/crates/teloxide-core/CHANGELOG.md @@ -132,6 +132,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `ChatMemberKind::{can_change_info, can_pin_messages, can_invite_users, can_manage_topics, can_send_polls, can_add_web_page_previews, can_send_other_messages, can_send_media_messages, can_send_messages}` (match on `ChatMemberKind` yourself) - `ChatMemberStatus::is_present` (use `ChatMemberKind::is_present` instead) - `InlineKeyboardButton::{text, kind}` + `teloxide::dispatching::{update_listeners, repls}` (use `reloxide::{update_listeners, repls}` instead) [pr954]: https://github.com/teloxide/teloxide/pull/954 [pr1013]: https://github.com/teloxide/teloxide/pull/1013 diff --git a/crates/teloxide/src/dispatching.rs b/crates/teloxide/src/dispatching.rs index a4d9b6ce..5c048e23 100644 --- a/crates/teloxide/src/dispatching.rs +++ b/crates/teloxide/src/dispatching.rs @@ -217,23 +217,6 @@ pub mod dialogue; -/// This module was moved to [`teloxide::update_listeners`]. -/// -/// [`teloxide::update_listeners`]: crate::update_listeners -#[deprecated = "This module was moved. Use `teloxide::update_listeners` instead."] -pub mod update_listeners { - pub use crate::update_listeners::*; -} - -/// This module was moved to [`teloxide::repls`]. -/// -/// [`teloxide::repls`]: crate::repls -#[deprecated = "This module was moved. Use `teloxide::repls` instead."] -#[cfg(feature = "ctrlc_handler")] -pub mod repls { - pub use crate::repls::*; -} - mod dispatcher; mod distribution; mod filter_ext;