Release 0.2.1

This commit is contained in:
Waffle 2021-03-19 12:27:32 +03:00
parent f4507bd3d2
commit 670979e5ca
3 changed files with 5 additions and 3 deletions

View file

@ -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])

View file

@ -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 <hirrolot@gmail.com>",

View file

@ -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+_
//!