Skip to content

Commit ed2df60

Browse files
committed
Version 0.73.0
1 parent 4b6bc88 commit ed2df60

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,24 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
77
### Notes
88
- [:ledger: View file changes][Unreleased][:page_with_curl: DB migration script][unreleased-sql-migration]
99
### Added
10-
- Bot API 5.2 (Payments 2.0).
1110
### Changed
12-
- `Telegram::runCommands` returns array of `ServerResponse` objects of executed commands.
1311
### Deprecated
1412
### Removed
1513
### Fixed
16-
- Regex for namespace extraction from custom command classes.
17-
- Nested and user-triggered `Telegram::runCommands`.
1814
### Security
1915

16+
## [0.73.0] - 2021-06-14
17+
### Notes
18+
- [:ledger: View file changes][0.73.0][:page_with_curl: DB migration script][0.73.0-sql-migration]
19+
### Added
20+
- Bot API 5.2 (Payments 2.0). (#1216)
21+
- Possibility to connect to MySQL DB with unix socket. (#1220)
22+
### Changed
23+
- `Telegram::runCommands` returns array of `ServerResponse` objects of executed commands. (#1223)
24+
### Fixed
25+
- Regex for namespace extraction from custom command classes.
26+
- Nested and user-triggered `Telegram::runCommands`. (#1223)
27+
2028
## [0.72.0] - 2021-04-16
2129
### Notes
2230
- [:ledger: View file changes][0.72.0][:page_with_curl: DB migration script][0.72.0-sql-migration]
@@ -517,7 +525,8 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
517525
### Deprecated
518526
- Move `hideKeyboard` to `removeKeyboard`.
519527

520-
[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.72.0-unreleased.sql
528+
[unreleased-sql-migration]: #
529+
[0.73.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.72.0-0.73.0.sql
521530
[0.72.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.71.0-0.72.0.sql
522531
[0.70.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.64.0-0.70.0.sql
523532
[0.70.0-bc-minimum-php-73]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#minimum-php-73
@@ -551,6 +560,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
551560
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog
552561

553562
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
563+
[0.73.0]: https://github.com/php-telegram-bot/core/compare/0.72.0...0.73.0
554564
[0.72.0]: https://github.com/php-telegram-bot/core/compare/0.71.0...0.72.0
555565
[0.71.0]: https://github.com/php-telegram-bot/core/compare/0.70.1...0.71.0
556566
[0.70.1]: https://github.com/php-telegram-bot/core/compare/0.70.0...0.70.1

src/Telegram.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Telegram
3737
*
3838
* @var string
3939
*/
40-
protected $version = '0.72.0';
40+
protected $version = '0.73.0';
4141

4242
/**
4343
* Telegram API key
@@ -190,10 +190,9 @@ class Telegram
190190
public const GENERIC_COMMAND = 'generic';
191191

192192
/**
193-
* Update filter
194-
* Filter updates
193+
* Update filter method
195194
*
196-
* @var callback
195+
* @var callable
197196
*/
198197
protected $update_filter;
199198

0 commit comments

Comments
 (0)