From dbd46dd9cdfd5ede82209f4f0e472c652a8ddf6a Mon Sep 17 00:00:00 2001 From: Hirrolot Date: Wed, 27 Apr 2022 16:10:33 +0600 Subject: [PATCH] Release v0.9.0 Former-commit-id: fcea341bc888ce1ddacc79fbfbb9b32aaf639023 --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9cfdb74..ec99c9a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## unreleased +## 0.9.0 - 2022-04-27 + ### Added - The `dispatching::filter_command` function (also accessible as `teloxide::filter_command`) as a shortcut for `dptree::entry().filter_command()`. diff --git a/Cargo.toml b/Cargo.toml index b77e52ea..25c9bde4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "teloxide" -version = "0.8.2" +version = "0.9.0" edition = "2021" description = "An elegant Telegram bots framework for Rust" repository = "https://github.com/teloxide/teloxide" diff --git a/README.md b/README.md index d086f872..a89f0a11 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ $ rustup override set nightly 5. Run `cargo new my_bot`, enter the directory and put these lines into your `Cargo.toml`: ```toml [dependencies] -teloxide = { version = "0.8", features = ["macros", "auto-send"] } +teloxide = { version = "0.9", features = ["macros", "auto-send"] } log = "0.4" pretty_env_logger = "0.4" tokio = { version = "1.8", features = ["rt-multi-thread", "macros"] }