Skip to content

Commit 64bcd92

Browse files
committed
Version 0.54.0
1 parent 59c4120 commit 64bcd92

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

CHANGELOG.md

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

66
## [Unreleased]
77
### Added
8-
- `ChatAction` class to simplify chat action selection.
9-
- Telegram Games platform!
10-
- Ability to set custom MySQL port.
118
### Changed
12-
- [:exclamation:][unreleased-bc-rename-constants] Rename and ensure no redefinition of constants: `BASE_PATH` -> `TB_BASE_PATH`, `BASE_COMMANDS_PATH` -> `TB_BASE_COMMANDS_PATH`.
139
### Deprecated
1410
### Removed
1511
### Fixed
1612
### Security
1713

14+
## [0.54.0] - 2018-07-21
15+
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.54.0-sql-migration] on your database.
16+
### Added
17+
- `ChatAction` class to simplify chat action selection.
18+
- Telegram Games platform!
19+
- Ability to set custom MySQL port.
20+
### Changed
21+
- [:exclamation:][0.54.0-bc-rename-constants] Rename and ensure no redefinition of constants: `BASE_PATH` -> `TB_BASE_PATH`, `BASE_COMMANDS_PATH` -> `TB_BASE_COMMANDS_PATH`.
22+
1823
## [0.53.0] - 2018-04-01
1924
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.53.0-sql-migration] on your database.
2025
### Added
@@ -208,10 +213,12 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
208213
### Deprecated
209214
- Move `hideKeyboard` to `removeKeyboard`.
210215

211-
[0.53.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.52.0-0.53.0.sql
212-
[0.51.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.50.0-0.51.0.sql
216+
[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
217+
[0.54.0-bc-rename-constants]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#rename-constants
218+
[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
219+
[0.51.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.50.0-0.51.0.sql
213220
[0.50.0-bc-messagegetcommand-return-value]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#messagegetcommand-return-value
214-
[0.48.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.47.1-0.48.0.sql
221+
[0.48.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.47.1-0.48.0.sql
215222
[0.48.0-bc-correct-printerror]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#correct-printerror
216223
[0.47.0-bc-private-only-admin-commands]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#private-only-admin-commands
217224
[0.46.0-bc-request-class-refactor]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#request-class-refactor
@@ -223,6 +230,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
223230
[example-bot]: https://github.com/php-telegram-bot/example-bot
224231

225232
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
233+
[0.54.0]: https://github.com/php-telegram-bot/core/compare/0.53.0...0.54.0
226234
[0.53.0]: https://github.com/php-telegram-bot/core/compare/0.52.0...0.53.0
227235
[0.52.0]: https://github.com/php-telegram-bot/core/compare/0.51.0...0.52.0
228236
[0.51.0]: https://github.com/php-telegram-bot/core/compare/0.50.0...0.51.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.53.0';
33+
protected $version = '0.54.0';
3434

3535
/**
3636
* Telegram API key

0 commit comments

Comments
 (0)