Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.47.0 (2026-02-12)

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

## 0.46.1 (2026-01-20)

* docs(docsrs): doc_auto_cfg feature was merged into doc_cfg - [#312](https://github.com/ayrat555/frankenstein/pull/312)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frankenstein"
version = "0.46.1"
version = "0.47.0"
authors = [
"Ayrat Badykov <ayratin555@gmail.com>",
"EdJoPaTo <frankenstein-rust@edjopato.de>",
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Telegram bot API client for Rust.

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

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

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

```toml
[dependencies]
frankenstein = { version = "0.46", features = [] }
frankenstein = { version = "0.47", features = [] }
```

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

```toml
frankenstein = { version = "0.46", features = ["client-reqwest"] }
frankenstein = { version = "0.47", features = ["client-reqwest"] }
```

## Usage
Expand Down Expand Up @@ -136,7 +136,7 @@ It has two variants:

### Documentation

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.46.1/frankenstein/trait.TelegramApi.html#provided-methods)
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)

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

Expand Down