Skip to content

Commit ed50346

Browse files
committed
Version 0.53.0
1 parent c5a5923 commit ed50346

File tree

5 files changed

+43
-37
lines changed

5 files changed

+43
-37
lines changed

CHANGELOG.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@ 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.
7+
### Added
8+
### Changed
9+
### Deprecated
10+
### Removed
11+
### Fixed
12+
### Security
13+
14+
## [0.53.0] - 2018-04-01
15+
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.53.0-sql-migration] on your database.
816
### Added
917
- Implemented new changes for Bot API 3.6 (streamable InputMediaVideo, connected website).
1018
- `Telegram::getLastUpdateId()` method, returns ID of the last update that was processed.
@@ -14,12 +22,9 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
1422
- Add debug log entry instead of throwing an exception for duplicate updates.
1523
- `Telegram::handleGetUpdates()` can now work without a database connection (not enabled by default).
1624
- Improved `/sendtochannel` and `/sendtoall` commands, using new message helpers.
17-
### Deprecated
18-
### Removed
1925
### Fixed
2026
- PHPCS fixes for updated CodeSniffer dependency.
2127
- Send messages correctly via `/sendtochannel`.
22-
### Security
2328

2429
## [0.52.0] - 2018-01-07
2530
### Fixed
@@ -199,7 +204,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
199204
### Deprecated
200205
- Move `hideKeyboard` to `removeKeyboard`.
201206

202-
[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.52.0-unreleased.sql
207+
[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
203208
[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
204209
[0.50.0-bc-messagegetcommand-return-value]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#messagegetcommand-return-value
205210
[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
@@ -214,6 +219,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
214219
[example-bot]: https://github.com/php-telegram-bot/example-bot
215220

216221
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
222+
[0.53.0]: https://github.com/php-telegram-bot/core/compare/0.52.0...0.53.0
217223
[0.52.0]: https://github.com/php-telegram-bot/core/compare/0.51.0...0.52.0
218224
[0.51.0]: https://github.com/php-telegram-bot/core/compare/0.50.0...0.51.0
219225
[0.50.0]: https://github.com/php-telegram-bot/core/compare/0.49.0...0.50.0

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"guzzlehttp/guzzle": "^6.3"
2727
},
2828
"require-dev": {
29-
"phpunit/phpunit": "^4.8|^5.7|^6.5",
29+
"phpunit/phpunit": "^4.8|^5.7|^6.5|^7.0",
3030
"squizlabs/php_codesniffer": "^3.2"
3131
},
3232
"autoload": {

composer.lock

Lines changed: 30 additions & 30 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.52.0';
33+
protected $version = '0.53.0';
3434

3535
/**
3636
* Telegram API key

0 commit comments

Comments
 (0)