Release v0.7.0

This commit is contained in:
Hirrolot 2022-02-09 08:36:25 +06:00
parent 5b13f8c905
commit 30d37741e4
3 changed files with 4 additions and 2 deletions

View file

@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## unreleased
## 0.7.0 - 2022-02-09
### Changed
- Make `DispatcherBuilder::{default_handler, error_handler}` accept a handler that implements `Send + Sync` ([PR 517](https://github.com/teloxide/teloxide/pull/517)).

View file

@ -1,6 +1,6 @@
[package]
name = "teloxide"
version = "0.6.1"
version = "0.7.0"
edition = "2018"
description = "An elegant Telegram bots framework for Rust"
repository = "https://github.com/teloxide/teloxide"

View file

@ -73,7 +73,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.6", features = ["macros", "auto-send"] }
teloxide = { version = "0.7", features = ["macros", "auto-send"] }
log = "0.4"
pretty_env_logger = "0.4.0"
tokio = { version = "1.8", features = ["rt-multi-thread", "macros"] }