Skip to content

Commit 7701428

Browse files
committed
Version 0.54.1
1 parent f71dc8a commit 7701428

File tree

4 files changed

+36
-27
lines changed

4 files changed

+36
-27
lines changed

CHANGELOG.md

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

14+
## [0.54.1] - 2018-10-23
15+
### Fixed
16+
- `sendToActiveChats` now works correctly for any valid Request action.
17+
1518
## [0.54.0] - 2018-07-21
1619
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.54.0-sql-migration] on your database.
1720
### Added
@@ -231,6 +234,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
231234
[example-bot]: https://github.com/php-telegram-bot/example-bot
232235

233236
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
237+
[0.54.1]: https://github.com/php-telegram-bot/core/compare/0.54.0...0.54.1
234238
[0.54.0]: https://github.com/php-telegram-bot/core/compare/0.53.0...0.54.0
235239
[0.53.0]: https://github.com/php-telegram-bot/core/compare/0.52.0...0.53.0
236240
[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)