Skip to content

Commit 55698b2

Browse files
committed
Version 0.55.0
1 parent 624051b commit 55698b2

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
44
Exclamation symbols (:exclamation:) note something of importance e.g. breaking changes. Click them to learn more.
55

66
## [Unreleased]
7-
:exclamation: After updating to this version, you will need to execute the [SQL migration script][unreleased-sql-migration] on your database.
87
### Added
9-
- Bot API 4.0
108
### Changed
11-
- [:exclamation:][unreleased-bc-move-animation-out-of-games-namespace] Move Animation entity out of Games namespace.
129
### Deprecated
1310
### Removed
1411
### Fixed
15-
- Added missing `video_note` to `Message` types.
1612
### Security
1713

14+
## [0.55.0] - 2018-12-20
15+
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.55.0-sql-migration] on your database.
16+
### Added
17+
- Bot API 4.0 and 4.1 (Telegram Passport)
18+
- Test PHP 7.3 with Travis.
19+
### Changed
20+
- [:exclamation:][0.55.0-bc-move-animation-out-of-games-namespace] Move Animation entity out of Games namespace.
21+
### Fixed
22+
- Added missing `video_note` to `Message` types.
23+
1824
## [0.54.1] - 2018-10-23
1925
### Fixed
2026
- `sendToActiveChats` now works correctly for any valid Request action.
@@ -221,8 +227,8 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
221227
### Deprecated
222228
- Move `hideKeyboard` to `removeKeyboard`.
223229

224-
[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.54.0-unreleased.sql
225-
[unreleased-bc-move-animation-out-of-games-namespace]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#move-animation-out-of-games-namespace
230+
[0.55.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.54.0-unreleased.sql
231+
[0.55.0-bc-move-animation-out-of-games-namespace]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#move-animation-out-of-games-namespace
226232
[0.54.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.53.0-0.54.0.sql
227233
[0.54.0-bc-rename-constants]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#rename-constants
228234
[0.53.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.52.0-0.53.0.sql
@@ -240,6 +246,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
240246
[example-bot]: https://github.com/php-telegram-bot/example-bot
241247

242248
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
249+
[0.55.0]: https://github.com/php-telegram-bot/core/compare/0.54.1...0.55.0
243250
[0.54.1]: https://github.com/php-telegram-bot/core/compare/0.54.0...0.54.1
244251
[0.54.0]: https://github.com/php-telegram-bot/core/compare/0.53.0...0.54.0
245252
[0.53.0]: https://github.com/php-telegram-bot/core/compare/0.52.0...0.53.0

src/Telegram.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Telegram
3030
*
3131
* @var string
3232
*/
33-
protected $version = '0.54.1';
33+
protected $version = '0.55.0';
3434

3535
/**
3636
* Telegram API key

0 commit comments

Comments
 (0)