Skip to content

Commit cd2935d

Browse files
authored
release 0.48.0 (#318)
1 parent d15a3cb commit cd2935d

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.48.0 (2026-03-05)
4+
5+
* feat: Bot API 9.5 - [#317](https://github.com/ayrat555/frankenstein/pull/317)
6+
37
## 0.47.0 (2026-02-12)
48

59
* feat: Bot API 9.4 - [#314](https://github.com/ayrat555/frankenstein/pull/314)

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "frankenstein"
3-
version = "0.47.0"
3+
version = "0.48.0"
44
authors = [
55
"Ayrat Badykov <ayratin555@gmail.com>",
66
"EdJoPaTo <frankenstein-rust@edjopato.de>",

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Telegram bot API client for Rust.
66

7-
It's a complete wrapper for Telegram bot API, and it's up-to-date with version 9.4 of the API.
7+
It's a complete wrapper for Telegram bot API, and it's up-to-date with version 9.5 of the API.
88

99
Frankenstein's data structures (Rust structs and enums) are mapped one-to-one from Telegram bot API types and method parameters.
1010

@@ -14,7 +14,7 @@ Run `cargo add frankenstein` or add the following to your `Cargo.toml`.
1414

1515
```toml
1616
[dependencies]
17-
frankenstein = { version = "0.47", features = [] }
17+
frankenstein = { version = "0.48", features = [] }
1818
```
1919

2020
You likely want to use either a blocking or an async client. Enable it via the [Features](#features).
@@ -33,7 +33,7 @@ Without enabling any additional features this crate will only ship with Telegram
3333
For example for the async client add the following line to your `Cargo.toml` file:
3434

3535
```toml
36-
frankenstein = { version = "0.47", features = ["client-reqwest"] }
36+
frankenstein = { version = "0.48", features = ["client-reqwest"] }
3737
```
3838

3939
## Usage
@@ -136,7 +136,7 @@ It has two variants:
136136

137137
### Documentation
138138

139-
Frankenstein implements all Telegram bot API methods. To see which parameters you should pass, check the [official Telegram Bot API documentation](https://core.telegram.org/bots/api#available-methods) or [docs.rs/frankenstein](https://docs.rs/frankenstein/0.47.0/frankenstein/trait.TelegramApi.html#provided-methods)
139+
Frankenstein implements all Telegram bot API methods. To see which parameters you should pass, check the [official Telegram Bot API documentation](https://core.telegram.org/bots/api#available-methods) or [docs.rs/frankenstein](https://docs.rs/frankenstein/0.48.0/frankenstein/trait.TelegramApi.html#provided-methods)
140140

141141
You can check out real-world bots created using this library:
142142

0 commit comments

Comments
 (0)