diff --git a/CHANGELOG.md b/CHANGELOG.md index b2d104a4..a816611d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,19 +5,26 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c ## [Unreleased] ### Notes -- [:ledger: View file changes][Unreleased] ∙ [:page_with_curl: DB migration script][unreleased-sql-migration] +- [:ledger: View file changes][Unreleased] +### Added +### Changed +### Deprecated +### Removed +### Fixed +### Security + +## [0.75.0] - 2021-12-29 +### Notes +- [:ledger: View file changes][0.75.0] ∙ [:page_with_curl: DB migration script][0.75.0-sql-migration] ### Added - Ability to directly set commands paths. (@wright-tw, @noplanman) (#1252) - Bot API 5.4. (@TiiFuchs, @noplanman) (#1266) - Bot API 5.5. (@TiiFuchs, @noplanman) (#1267) - The field `message_auto_delete_time` was added to the Chat Entity (@TiiFuchs) (#1265) -### Changed -### Deprecated ### Removed -- [:exclamation:][unreleased-bc-removed-chatactions] Removed deprecated `ChatAction::` `RECORD_AUDIO` and `UPLOAD_AUDIO`. Use `RECORD_VOICE` and `UPLOAD_VOICE` instead. +- [:exclamation:][0.75.0-bc-removed-chatactions] Removed deprecated `ChatAction::` `RECORD_AUDIO` and `UPLOAD_AUDIO`. Use `RECORD_VOICE` and `UPLOAD_VOICE` instead. (@TiiFuchs) (#1267) ### Fixed - PHP 8.1 deprecations. (@maxgorovenko) (#1260) -### Security ## [0.74.0] - 2021-06-26 ### Notes @@ -543,8 +550,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/develop/utils/db-schema-update/0.74.0-unreleased.sql -[unreleased-bc-removed-chatactions]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#removed-deprecated-chatactions +[0.75.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.74.0-0.75.0.sql +[0.75.0-bc-removed-chatactions]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#removed-deprecated-chatactions [0.74.0-bc-chatmember-subentities]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#chatmember-subentities [0.73.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.72.0-0.73.0.sql [0.72.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.71.0-0.72.0.sql @@ -580,6 +587,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c [Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog [Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop +[0.75.0]: https://github.com/php-telegram-bot/core/compare/0.74.0...0.75.0 [0.74.0]: https://github.com/php-telegram-bot/core/compare/0.73.1...0.74.0 [0.73.1]: https://github.com/php-telegram-bot/core/compare/0.73.0...0.73.1 [0.73.0]: https://github.com/php-telegram-bot/core/compare/0.72.0...0.73.0 diff --git a/src/Telegram.php b/src/Telegram.php index 5bbf0054..141eafee 100644 --- a/src/Telegram.php +++ b/src/Telegram.php @@ -37,7 +37,7 @@ class Telegram * * @var string */ - protected $version = '0.74.0'; + protected $version = '0.75.0'; /** * Telegram API key diff --git a/utils/db-schema-update/0.74.0-unreleased.sql b/utils/db-schema-update/0.74.0-0.75.0.sql similarity index 100% rename from utils/db-schema-update/0.74.0-unreleased.sql rename to utils/db-schema-update/0.74.0-0.75.0.sql