diff --git a/CHANGELOG.md b/CHANGELOG.md index b1ac52550..ff28fe129 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,17 +4,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p Exclamation symbols (:exclamation:) note something of importance e.g. breaking changes. Click them to learn more. ## [Unreleased] -:exclamation: After updating to this version, you will need to execute the [SQL migration script][unreleased-sql-migration] on your database. ### Added -- Bot API 4.0 ### Changed -- [:exclamation:][unreleased-bc-move-animation-out-of-games-namespace] Move Animation entity out of Games namespace. ### Deprecated ### Removed ### Fixed -- Added missing `video_note` to `Message` types. ### Security +## [0.55.0] - 2018-12-20 +:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.55.0-sql-migration] on your database. +### Added +- Bot API 4.0 and 4.1 (Telegram Passport) +- Test PHP 7.3 with Travis. +### Changed +- [:exclamation:][0.55.0-bc-move-animation-out-of-games-namespace] Move Animation entity out of Games namespace. +### Fixed +- Added missing `video_note` to `Message` types. + ## [0.54.1] - 2018-10-23 ### Fixed - `sendToActiveChats` now works correctly for any valid Request action. @@ -221,8 +227,8 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c ### Deprecated - Move `hideKeyboard` to `removeKeyboard`. -[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.54.0-unreleased.sql -[unreleased-bc-move-animation-out-of-games-namespace]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#move-animation-out-of-games-namespace +[0.55.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.54.0-unreleased.sql +[0.55.0-bc-move-animation-out-of-games-namespace]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#move-animation-out-of-games-namespace [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 [0.54.0-bc-rename-constants]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#rename-constants [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 @@ -240,6 +246,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c [example-bot]: https://github.com/php-telegram-bot/example-bot [Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop +[0.55.0]: https://github.com/php-telegram-bot/core/compare/0.54.1...0.55.0 [0.54.1]: https://github.com/php-telegram-bot/core/compare/0.54.0...0.54.1 [0.54.0]: https://github.com/php-telegram-bot/core/compare/0.53.0...0.54.0 [0.53.0]: https://github.com/php-telegram-bot/core/compare/0.52.0...0.53.0 diff --git a/src/Telegram.php b/src/Telegram.php index c8969552e..53e1713a3 100644 --- a/src/Telegram.php +++ b/src/Telegram.php @@ -30,7 +30,7 @@ class Telegram * * @var string */ - protected $version = '0.54.1'; + protected $version = '0.55.0'; /** * Telegram API key diff --git a/utils/db-schema-update/0.54.1-unreleased.sql b/utils/db-schema-update/0.54.1-0.55.0.sql similarity index 100% rename from utils/db-schema-update/0.54.1-unreleased.sql rename to utils/db-schema-update/0.54.1-0.55.0.sql