diff --git a/CHANGELOG.md b/CHANGELOG.md index 81e63969..deaea888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [unreleased] +## [0.3.1] - 2020-08-25 ### Added - `Bot::builder` method ([PR 269](https://github.com/teloxide/teloxide/pull/269)). diff --git a/Cargo.toml b/Cargo.toml index a8661289..dc1562ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "teloxide" -version = "0.3.0" +version = "0.3.1" edition = "2018" description = "An elegant Telegram bots framework for Rust" repository = "https://github.com/teloxide/teloxide" diff --git a/README.md b/README.md index 2c09106e..9dad8c5a 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,13 @@

teloxide

- + - + @@ -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`: ```toml [dependencies] -teloxide = "0.3.0" +teloxide = "0.3.1" teloxide-macros = "0.3.2" log = "0.4.8"