Skip to content

Commit 0f5afe0

Browse files
committed
Version 0.54.1
1 parent 97f6fd1 commit 0f5afe0

File tree

5 files changed

+36
-27
lines changed

5 files changed

+36
-27
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
1414
### Deprecated
1515
### Removed
1616
### Fixed
17-
- `sendToActiveChats` now works correctly for any valid Request action.
1817
### Security
1918

19+
## [0.54.1] - 2018-10-23
20+
### Fixed
21+
- `sendToActiveChats` now works correctly for any valid Request action.
22+
2023
## [0.54.0] - 2018-07-21
2124
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.54.0-sql-migration] on your database.
2225
### Added
@@ -238,6 +241,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
238241
[example-bot]: https://github.com/php-telegram-bot/example-bot
239242

240243
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
244+
[0.54.1]: https://github.com/php-telegram-bot/core/compare/0.54.0...0.54.1
241245
[0.54.0]: https://github.com/php-telegram-bot/core/compare/0.53.0...0.54.0
242246
[0.53.0]: https://github.com/php-telegram-bot/core/compare/0.52.0...0.53.0
243247
[0.52.0]: https://github.com/php-telegram-bot/core/compare/0.51.0...0.52.0

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,13 @@
2626
"php": "^5.5|^7.0",
2727
"ext-pdo": "*",
2828
"ext-curl": "*",
29+
"ext-json": "*",
2930
"ext-mbstring": "*",
3031
"monolog/monolog": "^1.23",
3132
"guzzlehttp/guzzle": "^6.3"
3233
},
3334
"require-dev": {
34-
"phpunit/phpunit": "^4.8|^5.7|^6.5|^7.2",
35+
"phpunit/phpunit": "^4.8|^5.7|^6.5|^7.4",
3536
"squizlabs/php_codesniffer": "^3.3"
3637
},
3738
"autoload": {

composer.lock

Lines changed: 28 additions & 24 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
@@ -30,7 +30,7 @@ class Telegram
3030
*
3131
* @var string
3232
*/
33-
protected $version = '0.54.0';
33+
protected $version = '0.54.1';
3434

3535
/**
3636
* Telegram API key

0 commit comments

Comments
 (0)