diff --git a/CHANGELOG.md b/CHANGELOG.md index 061c1e08..a97e221a 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.1] - 2020-03-19 + ### Fixed - Types fields privacy (make fields of some types public) ([#68][pr68]) diff --git a/Cargo.toml b/Cargo.toml index 9ad16d2e..b9ee1fec 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.2.0" +version = "0.2.1" edition = "2018" authors = [ "Temirkhan Myrzamadi ", diff --git a/src/lib.rs b/src/lib.rs index e3a229b1..1dada893 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,11 +1,11 @@ //! Core part of the [`teloxide`] library. //! //! This library provides tools for making requests to the [Telegram Bot API] -//! (Currently, version `5.` is supported) with ease. The library is fully +//! (Currently, version `5.1` is supported) with ease. The library is fully //! asynchronouns and built using [`tokio`]. //! //!```toml -//! teloxide_core = "0.1" +//! teloxide_core = "0.2" //! ``` //! _Compiler support: requires rustc 1.49+_ //!