From 200d330b871a21a7ccc07e29e9a3a8adea09bd66 Mon Sep 17 00:00:00 2001 From: strongtu Date: Wed, 10 Jul 2024 14:57:08 +0800 Subject: [PATCH] update change log: type of chat_id in `send_game` should be `ChatId` not u32 --- crates/teloxide-core/CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/crates/teloxide-core/CHANGELOG.md b/crates/teloxide-core/CHANGELOG.md index 36317098..87cc89a9 100644 --- a/crates/teloxide-core/CHANGELOG.md +++ b/crates/teloxide-core/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## unreleased +### Fixed + +- type of chat_id in `send_game` should be `ChatId` not u32 + +[pr1066]: https://github.com/teloxide/teloxide/pull/1066 + ### Added - `ChatPermission::can_*` helper functions ([#851][pr851])