Skip to content

Commit 695e63a

Browse files
committed
Version 0.56.0
1 parent 7805b2a commit 695e63a

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

CHANGELOG.md

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

66
## [Unreleased]
77
### Added
8-
- Helper for sending `InputMedia` objects using `Request::sendMediaGroup()` and `Request::editMediaMessage()` methods.
9-
- Allow passing absolute file path for InputFile fields, instead of `Request::encodeFile($path)`.
108
### Changed
11-
- All Message field types dynamically search for an existing Command class that can handle them.
12-
- Upgrade dependencies.
139
### Deprecated
14-
- Botan.io service has been discontinued.
15-
- Most built-in System Commands will be handled by GenericmessageCommand by default in a future release and will require a custom implementation.
1610
### Removed
1711
### Fixed
18-
- Constraint errors in `/cleanup` command.
19-
- Return correct objects for requests.
20-
- PHPCS: static before visibility declaration.
2112
### Security
2213

14+
## [0.56.0] - 2019-04-15
15+
### Added
16+
- Helper for sending `InputMedia` objects using `Request::sendMediaGroup()` and `Request::editMediaMessage()` methods. (#934)
17+
- Allow passing absolute file path for InputFile fields, instead of `Request::encodeFile($path)`. (#934)
18+
### Changed
19+
- All Message field types dynamically search for an existing Command class that can handle them. (#940)
20+
- Upgrade dependencies. (#945)
21+
### Deprecated
22+
- Botan.io service has been discontinued. (#925)
23+
- Most built-in System Commands will be handled by GenericmessageCommand by default in a future release and will require a custom implementation. (#940)
24+
### Fixed
25+
- Constraint errors in `/cleanup` command. (#930)
26+
- Return correct objects for requests. (#934)
27+
- PHPCS: static before visibility declaration. (#945)
28+
2329
## [0.55.1] - 2019-01-06
2430
### Added
2531
- Add missing `Request::editMessageMedia()` and `CallbackQuery::getChatInstance()` methods.
@@ -261,6 +267,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
261267
[example-bot]: https://github.com/php-telegram-bot/example-bot
262268

263269
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
270+
[0.56.0]: https://github.com/php-telegram-bot/core/compare/0.55.1...0.56.0
264271
[0.55.1]: https://github.com/php-telegram-bot/core/compare/0.55.0...0.55.1
265272
[0.55.0]: https://github.com/php-telegram-bot/core/compare/0.54.1...0.55.0
266273
[0.54.1]: https://github.com/php-telegram-bot/core/compare/0.54.0...0.54.1

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.55.1';
33+
protected $version = '0.56.0';
3434

3535
/**
3636
* Telegram API key

0 commit comments

Comments
 (0)