Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 0.32 #179

Merged
merged 1 commit into from
Jul 14, 2024
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.32.0 (2024-07-14)

- [Bot API 7.4](https://core.telegram.org/bots/api#may-28-2024) - [#171](https://github.com/ayrat555/frankenstein/pull/171)
- [Bot API 7.5](https://core.telegram.org/bots/api#june-18-2024) - [#174](https://github.com/ayrat555/frankenstein/pull/174)
- [Bot API 7.6](https://core.telegram.org/bots/api#july-1-2024) - [#175](https://github.com/ayrat555/frankenstein/pull/175)
- [Bot API 7.7](https://core.telegram.org/bots/api#july-7-2024) - [#177](https://github.com/ayrat555/frankenstein/pull/177)
- fix: ChatBoostUpdated in UpdateContent - [#176](https://github.com/ayrat555/frankenstein/pull/176)

## 0.31.0 (2024-05-20)

- [Bot API 7.3](https://core.telegram.org/bots/api#may-6-2024) - [#169](https://github.com/ayrat555/frankenstein/pull/169)
Expand Down
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.31.0"
version = "0.32.0"
authors = ["Ayrat Badykov <[email protected]>", "Pepe Márquez <[email protected]>"]
description = "Telegram bot API client for Rust"
edition = "2021"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Telegram bot API client for Rust.

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

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

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

```toml
[dependencies]
frankenstein = "0.31"
frankenstein = "0.32"
```

## Features
Expand Down Expand Up @@ -188,7 +188,7 @@ AsyncApi::builder().api_url(api_url).client(client).build()

### Documentation

Frankenstein implements all Telegram bot API methods. To see which parameters you should pass, check [docs.rs](https://docs.rs/frankenstein/0.31.0/frankenstein/api_traits/telegram_api/trait.TelegramApi.html#provided-methods)
Frankenstein implements all Telegram bot API methods. To see which parameters you should pass, check [docs.rs](https://docs.rs/frankenstein/0.32.0/frankenstein/api_traits/telegram_api/trait.TelegramApi.html#provided-methods)

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

Expand Down