v0.3.1 release

This commit is contained in:
Waffle 2020-08-25 17:45:16 +03:00
parent f571f377b4
commit 04f8ed5df7
3 changed files with 5 additions and 5 deletions

View file

@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [unreleased] ## [0.3.1] - 2020-08-25
### Added ### Added
- `Bot::builder` method ([PR 269](https://github.com/teloxide/teloxide/pull/269)). - `Bot::builder` method ([PR 269](https://github.com/teloxide/teloxide/pull/269)).

View file

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

View file

@ -3,13 +3,13 @@
<h1>teloxide</h1> <h1>teloxide</h1>
<a href="https://docs.rs/teloxide/"> <a href="https://docs.rs/teloxide/">
<img src="https://img.shields.io/badge/docs.rs-v0.3.0-blue.svg"> <img src="https://docs.rs/teloxide/badge.svg">
</a> </a>
<a href="https://github.com/teloxide/teloxide/actions"> <a href="https://github.com/teloxide/teloxide/actions">
<img src="https://github.com/teloxide/teloxide/workflows/Continuous%20integration/badge.svg"> <img src="https://github.com/teloxide/teloxide/workflows/Continuous%20integration/badge.svg">
</a> </a>
<a href="https://crates.io/crates/teloxide"> <a href="https://crates.io/crates/teloxide">
<img src="https://img.shields.io/badge/crates.io-v0.3.0-orange.svg"> <img src="https://img.shields.io/crates/v/teloxide.svg">
</a> </a>
<a href="https://t.me/teloxide"> <a href="https://t.me/teloxide">
<img src="https://img.shields.io/badge/official%20chat-t.me%2Fteloxide-blueviolet"> <img src="https://img.shields.io/badge/official%20chat-t.me%2Fteloxide-blueviolet">
@ -76,7 +76,7 @@ $ rustup override set nightly
5. Execute `cargo new my_bot`, enter the directory and put these lines into your `Cargo.toml`: 5. Execute `cargo new my_bot`, enter the directory and put these lines into your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
teloxide = "0.3.0" teloxide = "0.3.1"
teloxide-macros = "0.3.2" teloxide-macros = "0.3.2"
log = "0.4.8" log = "0.4.8"