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
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Changelog

## Unreleased
## 0.49.0 (2026-04-07)

* feat: Bot API 9.6
* fix(types): add the missing `date_time` message entity kind
* feat: Bot API 9.6 - [#319](https://github.com/ayrat555/frankenstein/pull/319)

## 0.48.0 (2026-03-05)

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.48.0"
version = "0.49.0"
authors = [
"Ayrat Badykov <ayratin555@gmail.com>",
"EdJoPaTo <frankenstein-rust@edjopato.de>",
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Run `cargo add frankenstein` or add the following to your `Cargo.toml`.

```toml
[dependencies]
frankenstein = { version = "0.48", features = [] }
frankenstein = { version = "0.49", 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.48", features = ["client-reqwest"] }
frankenstein = { version = "0.49", 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.48.0/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.49.0/frankenstein/trait.TelegramApi.html#provided-methods)

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

Expand Down
Loading