Merge pull request #856 from teloxide/core10

Release `teloxide-core` `v0.9.1`
This commit is contained in:
Sima Kinsart 2023-02-15 19:20:05 +00:00 committed by GitHub
commit ff59f462eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 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 ## unreleased
## 0.9.1 - 2023-02-15
### Fixed ### Fixed
- `Update::user` now handles channel posts, chat member changes and chat join request updates correctly ([#835][pr835]) - `Update::user` now handles channel posts, chat member changes and chat join request updates correctly ([#835][pr835])
@ -17,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[pr826]: https://github.com/teloxide/teloxide/pull/826 [pr826]: https://github.com/teloxide/teloxide/pull/826
[pr830]: https://github.com/teloxide/teloxide/pull/830 [pr830]: https://github.com/teloxide/teloxide/pull/830
### Added
- `ApiError::ImageProcessFailed` ([#825][pr825])
[pr825]: https://github.com/teloxide/teloxide/pull/825
## 0.9.0 - 2023-01-17 ## 0.9.0 - 2023-01-17
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "teloxide-core" name = "teloxide-core"
version = "0.9.0" version = "0.9.1"
description = "Core part of the `teloxide` library - telegram bot API client" description = "Core part of the `teloxide` library - telegram bot API client"
rust-version.workspace = true rust-version.workspace = true

View file

@ -5,7 +5,7 @@
//! asynchronous and built using [`tokio`]. //! asynchronous and built using [`tokio`].
//! //!
//!```toml //!```toml
//! teloxide_core = "0.8" //! teloxide_core = "0.9"
//! ``` //! ```
//! _Compiler support: requires rustc 1.64+_. //! _Compiler support: requires rustc 1.64+_.
//! //!

View file

@ -68,7 +68,7 @@ full = [
[dependencies] [dependencies]
teloxide-core = { version = "0.9.0", path = "../teloxide-core", default-features = false } teloxide-core = { version = "0.9.1", path = "../teloxide-core", default-features = false }
teloxide-macros = { version = "0.7.1", path = "../teloxide-macros", optional = true } teloxide-macros = { version = "0.7.1", path = "../teloxide-macros", optional = true }
serde_json = "1.0" serde_json = "1.0"