From a35667ac2b06dafef065be73b79d6f02a03ecf42 Mon Sep 17 00:00:00 2001 From: Hirrolot Date: Sun, 1 Aug 2021 20:45:59 +0600 Subject: [PATCH 1/3] Prepare for v0.5.1 --- CHANGELOG.md | 4 +++- Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af180059..8b1deef8 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.1] - 2021-08-01 + ### Changed -- Improved log messages when `^C` is received with `^C` handler setted up +- Improved log messages when `^C` is received with `^C` handler set up ## [0.5.0] - 2021-07-08 diff --git a/Cargo.toml b/Cargo.toml index a6410918..97c4d383 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "teloxide" -version = "0.5.0" +version = "0.5.1" edition = "2018" description = "An elegant Telegram bots framework for Rust" repository = "https://github.com/teloxide/teloxide" @@ -64,7 +64,7 @@ full = [ ] [dependencies] -teloxide-core = { version = "0.3.1", default-features = false } +teloxide-core = { version = "0.3.2", default-features = false } #teloxide-core = { git = "https://github.com/teloxide/teloxide-core.git", rev = "...", default-features = false } teloxide-macros = { version = "0.4", optional = true } From 5c69117a3813f3cb623bbc0144827618de1df10d Mon Sep 17 00:00:00 2001 From: Hirrolot Date: Thu, 5 Aug 2021 17:44:47 +0600 Subject: [PATCH 2/3] Update teloxide-core to v0.3.3 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 97c4d383..cfdd5a15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,7 +64,7 @@ full = [ ] [dependencies] -teloxide-core = { version = "0.3.2", default-features = false } +teloxide-core = { version = "0.3.3", default-features = false } #teloxide-core = { git = "https://github.com/teloxide/teloxide-core.git", rev = "...", default-features = false } teloxide-macros = { version = "0.4", optional = true } From d339d82fbcc473f19845494feb0934e1b50d9dff Mon Sep 17 00:00:00 2001 From: Hirrolot Date: Thu, 5 Aug 2021 22:17:44 +0600 Subject: [PATCH 3/3] Propagate the `trace_adaptor` & `erased` features from teloxide-core --- Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cfdd5a15..aee35fcc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,6 +42,8 @@ rustls = ["teloxide-core/rustls"] auto-send = ["teloxide-core/auto_send"] throttle = ["teloxide-core/throttle"] cache-me = ["teloxide-core/cache_me"] +trace-adaptor = ["teloxide-core/trace_adaptor"] +erased = ["teloxide-core/erased"] # currently used for `README.md` tests, building docs for `docsrs` to add `This is supported on feature="..." only.`, # and for teloxide-core. @@ -60,7 +62,9 @@ full = [ "rustls", "auto-send", "throttle", - "cache-me" + "cache-me", + "trace-adaptor", + "erased", ] [dependencies]