diff --git a/CHANGELOG.md b/CHANGELOG.md index a5fee453..09047ed5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [0.5.2] - 2021-08-25 + ### Fixed -- Depend on a right `futures` version +- Depend on a correct `futures` version (v0.3.15). ## [0.5.1] - 2021-08-05 diff --git a/Cargo.toml b/Cargo.toml index fef3c0e6..193a570b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "teloxide" -version = "0.5.1" +version = "0.5.2" edition = "2018" description = "An elegant Telegram bots framework for Rust" repository = "https://github.com/teloxide/teloxide" diff --git a/examples/inline_bot/src/main.rs b/examples/inline_bot/src/main.rs index 927679e8..d7c10399 100644 --- a/examples/inline_bot/src/main.rs +++ b/examples/inline_bot/src/main.rs @@ -34,7 +34,7 @@ async fn run() { // While constructing them from the struct itself is possible, it is preferred to use // the builder pattern if you wish to add more information to your result. // Please refer to the documentation for more detailed information about each field. - // https://docs.rs/teloxide/0.5.1/teloxide/types/struct.InlineQueryResultArticle.html + // https://docs.rs/teloxide/latest/teloxide/types/struct.InlineQueryResultArticle.html let ddg_search = InlineQueryResultArticle::new( "02".to_string(), "DuckDuckGo Search".to_string(),