Skip to content

Commit b6ea355

Browse files
committed
Version 0.72.0
1 parent a15282b commit b6ea355

File tree

5 files changed

+75
-61
lines changed

5 files changed

+75
-61
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cache:
1212
php:
1313
- 7.3
1414
- 7.4
15-
- 8.0snapshot
15+
- 8.0
1616
- nightly
1717

1818
jobs:

CHANGELOG.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,26 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
55

66
## [Unreleased]
77
### Notes
8-
- [:ledger: View file changes][Unreleased][:page_with_curl: DB migration script][unreleased-sql-migration]
8+
- [:ledger: View file changes][Unreleased]
99
### Added
10-
- Bot API 5.1 (ChatMember Update types, Improved Invite Links, Voice Chat). (@massadm, @noplanman)
11-
- Method to allow adding command classes directly. (@alligator77, @noplanman)
1210
### Changed
1311
### Deprecated
14-
- `Telegram::handleGetUpdates` method should be passed a `$data` array for parameters.
1512
### Removed
1613
### Fixed
17-
- `message.edit_date` is now of type `timestamp`.
18-
- Allow all update types by default when using `getUpdates` method.
1914
### Security
2015

16+
## [0.72.0] - 2021-04-16
17+
### Notes
18+
- [:ledger: View file changes][0.72.0][:page_with_curl: DB migration script][0.72.0-sql-migration]
19+
### Added
20+
- Bot API 5.1 (ChatMember Update types, Improved Invite Links, Voice Chat). (@massadm, @noplanman) (#1199)
21+
- Method to allow adding command classes directly. (@alligator77, @noplanman) (#1207, #1209)
22+
### Deprecated
23+
- `Telegram::handleGetUpdates` method should be passed a `$data` array for parameters. (#1202)
24+
### Fixed
25+
- `message.edit_date` is now of type `timestamp`. (#1191)
26+
- Allow all update types by default when using `getUpdates` method. (#1202)
27+
2128
## [0.71.0] - 2021-03-05
2229
### Notes
2330
- [:ledger: View file changes][0.71.0]
@@ -506,7 +513,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
506513
### Deprecated
507514
- Move `hideKeyboard` to `removeKeyboard`.
508515

509-
[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.71.0-unreleased.sql
516+
[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
510517
[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
511518
[0.70.0-bc-minimum-php-73]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#minimum-php-73
512519
[0.63.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.62.0-0.63.0.sql
@@ -539,6 +546,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
539546
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog
540547

541548
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
549+
[0.72.0]: https://github.com/php-telegram-bot/core/compare/0.71.0...0.72.0
542550
[0.71.0]: https://github.com/php-telegram-bot/core/compare/0.70.1...0.71.0
543551
[0.70.1]: https://github.com/php-telegram-bot/core/compare/0.70.0...0.70.1
544552
[0.70.0]: https://github.com/php-telegram-bot/core/compare/0.64.0...0.70.0

composer.lock

Lines changed: 58 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Telegram.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Telegram
3535
*
3636
* @var string
3737
*/
38-
protected $version = '0.71.0';
38+
protected $version = '0.72.0';
3939

4040
/**
4141
* Telegram API key

0 commit comments

Comments
 (0)