Skip to content

Commit

Permalink
Version 0.74.0
Browse files Browse the repository at this point in the history
  • Loading branch information
noplanman committed Jun 26, 2021
1 parent a826542 commit 6d62ea1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,18 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
### Notes
- [:ledger: View file changes][Unreleased][:page_with_curl: DB migration script][unreleased-sql-migration]
### Added
- Bot API 5.3 (Personalized Commands, Keyboard Placeholders). (@TiiFuchs, @noplanman) (#1229, #1231)
### Changed
### Deprecated
### Removed
### Fixed
### Security

## [0.74.0] - 2021-06-26
### Notes
- [:ledger: View file changes][0.74.0]
### Added
- Bot API 5.3 (Personalized Commands, Keyboard Placeholders). (@TiiFuchs, @noplanman) (#1229, #1231)

## [0.73.1] - 2021-06-20
### Notes
- [:ledger: View file changes][0.73.1]
Expand Down Expand Up @@ -567,6 +572,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog

[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
[0.74.0]: https://github.com/php-telegram-bot/core/compare/0.73.1...0.74.0
[0.73.1]: https://github.com/php-telegram-bot/core/compare/0.73.0...0.73.1
[0.73.0]: https://github.com/php-telegram-bot/core/compare/0.72.0...0.73.0
[0.72.0]: https://github.com/php-telegram-bot/core/compare/0.71.0...0.72.0
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

A Telegram Bot based on the official [Telegram Bot API]

[![API Version](https://img.shields.io/badge/Bot%20API-5.2%20%28April%202021%29-32a2da.svg)](https://core.telegram.org/bots/api#april-26-2021)
[![API Version](https://img.shields.io/badge/Bot%20API-5.3%20%28June%202021%29-32a2da.svg)](https://core.telegram.org/bots/api#june-25-2021)
[![Join the bot support group on Telegram](https://img.shields.io/badge/telegram-@PHP__Telegram__Bot__Support-64659d.svg)](https://telegram.me/PHP_Telegram_Bot_Support)
[![Donate](https://img.shields.io/badge/%F0%9F%92%99-Donate%20%2F%20Support%20Us-blue.svg)](#donate)

Expand Down Expand Up @@ -78,7 +78,7 @@ This Bot aims to provide a platform where one can simply write a bot and have in

The Bot can:
- Retrieve updates with [webhook](#webhook-installation) and [getUpdates](#getupdates-installation) methods.
- Supports all types and methods according to Telegram Bot API 5.2 (April 2021).
- Supports all types and methods according to Telegram Bot API 5.3 (June 2021).
- Supports supergroups.
- Handle commands in chat with other bots.
- Manage Channel from the bot admin interface.
Expand Down Expand Up @@ -389,15 +389,15 @@ The reason for denying an update can be defined with the `$reason` parameter. Th

### Types

All types are implemented according to Telegram API 5.2 (April 2021).
All types are implemented according to Telegram API 5.3 (June 2021).

### Inline Query

Full support for inline query according to Telegram API 5.2 (April 2021).
Full support for inline query according to Telegram API 5.3 (June 2021).

### Methods

All methods are implemented according to Telegram API 5.2 (April 2021).
All methods are implemented according to Telegram API 5.3 (June 2021).

#### Send Message

Expand Down
2 changes: 1 addition & 1 deletion src/Telegram.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Telegram
*
* @var string
*/
protected $version = '0.73.1';
protected $version = '0.74.0';

/**
* Telegram API key
Expand Down

0 comments on commit 6d62ea1

Please sign in to comment.