Skip to content

Commit 78024d7

Browse files
committed
Version 0.62.0
1 parent 825da76 commit 78024d7

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ php:
1919

2020
matrix:
2121
allow_failures:
22-
- php: 7.4
2322
- php: nightly
2423
- php: hhvm
2524
fast_finish: true

CHANGELOG.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,33 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
77
### Notes
88
- [:ledger: View file changes][Unreleased]
99
### Added
10+
### Changed
11+
### Deprecated
12+
### Removed
13+
### Fixed
14+
### Security
15+
16+
## [0.62.0] - 2020-04-08
17+
### Notes
18+
- [:ledger: View file changes][0.62.0][:page_with_curl: DB migration script][0.62.0-sql-migration]
19+
### Added
1020
- Bot API 4.5 (Unique file IDs, MarkdownV2). (#1046)
1121
- Chain the exception thrown when getting commands from path. (#1030)
12-
- Support `language_code` in `DB::selectChats()` for filtering the chats selection.
13-
- Bot API 4.6 (Polls 2.0).
14-
- Bot API 4.7 (Dice, Sticker Sets, Bot Commands).
22+
- Support `language_code` in `DB::selectChats()` for filtering the chats selection. (#1058)
23+
- Bot API 4.6 (Polls 2.0). (#1066)
24+
- Bot API 4.7 (Dice, Sticker Sets, Bot Commands). (#1067)
1525
### Changed
1626
- Save notes an unescaped JSON, to allow easy DB reading and editing of values. (#1005)
1727
- `Request::setClient()` now accepts more flexible `ClientInterface`. (#1068)
18-
### Deprecated
1928
### Removed
2029
- Unnecessary `instanceof` checks for entities. (#1068)
2130
- Unused `Request::$input` variable. (#1068)
2231
### Fixed
2332
- Execution of `/start` command without any custom implementation.
2433
- Return `animation` type for GIF Message (which returns both `animation` and `document`). (#1044)
2534
- Change lowercase function to `mb_strtolower` from `strtolower` because of `latin-extented` characters. (#1051)
26-
- Extend `Request::mediaInputHelper()` to include `thumb` parameter.
35+
- Extend `Request::mediaInputHelper()` to include `thumb` parameter. (#1059)
2736
- Various docblock annotations. (#1068)
28-
### Security
2937

3038
## [0.61.1] - 2019-11-23
3139
### Notes
@@ -423,6 +431,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
423431
### Deprecated
424432
- Move `hideKeyboard` to `removeKeyboard`.
425433

434+
[0.62.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.61.1-0.62.0.sql
426435
[0.61.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.60.0-0.61.0.sql
427436
[0.61.0-bc-remove-monolog-from-core]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#remove-monolog-from-core
428437
[0.58.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.57.0-0.58.0.sql
@@ -450,6 +459,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
450459
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog
451460

452461
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
462+
[0.62.0]: https://github.com/php-telegram-bot/core/compare/0.61.1...0.62.0
453463
[0.61.1]: https://github.com/php-telegram-bot/core/compare/0.61.0...0.61.1
454464
[0.61.0]: https://github.com/php-telegram-bot/core/compare/0.60.0...0.61.0
455465
[0.60.0]: https://github.com/php-telegram-bot/core/compare/0.59.1...0.60.0

src/Telegram.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Telegram
3131
*
3232
* @var string
3333
*/
34-
protected $version = '0.61.1';
34+
protected $version = '0.62.0';
3535

3636
/**
3737
* Telegram API key

0 commit comments

Comments
 (0)