From fd841ecd95820d6c9d334327f8cb8d1b4ec1f4f4 Mon Sep 17 00:00:00 2001 From: Waffle Date: Tue, 16 Mar 2021 15:36:46 +0300 Subject: [PATCH] prepare for 0.2 release --- CHANGELOG.md | 2 ++ Cargo.toml | 6 +++--- README.md | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 664a9483..1dc5506c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [0.2.0] - 2020-03-16 + ### Changed - Refactor `ReplyMarkup` ([#pr65][pr65]) (**BC**) diff --git a/Cargo.toml b/Cargo.toml index 06a14ebd..9ad16d2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "teloxide-core" description = "Core part of the `teloxide` library - telegram bot API client" -version = "0.1.1" +version = "0.2.0" edition = "2018" authors = [ "Temirkhan Myrzamadi ", @@ -32,7 +32,7 @@ exclude = [ [dependencies] futures = "0.3.5" -tokio = { version = "1.0.1", features = ["fs"] } +tokio = { version = "1.2.0", features = ["fs"] } tokio-util = "0.6.0" pin-project = "1.0.3" bytes = "1.0.0" @@ -41,7 +41,7 @@ log = "0.4" serde = { version = "1.0.114", features = ["derive"] } serde_json = "1.0.55" -serde_with_macros = "1.1.0" +serde_with_macros = "1.4.1" uuid = { version = "0.8.1", features = ["v4"] } # for attaching input files derive_more = "0.99.9" diff --git a/README.md b/README.md index 898b3485..c4425c1d 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ ```toml -teloxide_core = "0.1" +teloxide_core = "0.2" ``` _Compiler support: requires rustc 1.49+_.