mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
Merge pull request #856 from teloxide/core10
Release `teloxide-core` `v0.9.1`
This commit is contained in:
commit
ff59f462eb
4 changed files with 11 additions and 3 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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+_.
|
||||||
//!
|
//!
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue