diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 246ef1e..bc451a6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - php: ['8.0', '8.1'] + php: ['8.0', '8.1', '8.2'] services: mariadb: diff --git a/CHANGELOG.md b/CHANGELOG.md index e1b1d6c..23bfaa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,12 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c ### Fixed ### Security +## [2.1.0] - 2023-05-27 +### Notes +- [:ledger: View file changes][2.1.0] +### Changed +- Bumped core to version 0.81.*. + ## [2.0.0] - 2022-07-04 ### Notes - [:ledger: View file changes][2.0.0] @@ -225,6 +231,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c [0.44.0-bc-parameter-structure]: https://github.com/php-telegram-bot/telegram-bot-manager/wiki/Breaking-backwards-compatibility#parameter-structure-changed "Parameter structure changed" [Unreleased]: https://github.com/php-telegram-bot/telegram-bot-manager/compare/master...develop +[2.1.0]: https://github.com/php-telegram-bot/telegram-bot-manager/compare/2.0.0...2.1.0 [2.0.0]: https://github.com/php-telegram-bot/telegram-bot-manager/compare/1.7.0...2.0.0 [1.7.0]: https://github.com/php-telegram-bot/telegram-bot-manager/compare/1.6.0...1.7.0 [1.6.0]: https://github.com/php-telegram-bot/telegram-bot-manager/compare/1.5.0...1.6.0 diff --git a/README.md b/README.md index f39b828..243b54b 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Installation and usage is pretty straight forward: ### Require this package with [Composer] ```bash -composer require php-telegram-bot/telegram-bot-manager:^2.0.0 +composer require php-telegram-bot/telegram-bot-manager:^2.1 ``` **NOTE:** This will automatically also install [PHP Telegram Bot][github-tgbot-core] into your project (if it isn't already). @@ -33,12 +33,12 @@ It is possible however, to override the core version that this library requires: ```yaml "require": { - "php-telegram-bot/telegram-bot-manager": "^2.0.0", - "longman/telegram-bot": "dev-master as 0.78" + "php-telegram-bot/telegram-bot-manager": "^2.1", + "longman/telegram-bot": "dev-master as 0.81" } ``` -This example will pull the master version of the core library, making it appear to be version 0.78, which then satisfies the requirement. +This example will pull the master version of the core library, making it appear to be version 0.81, which then satisfies the requirement. ### Performing actions diff --git a/composer.json b/composer.json index 153d8a4..e3a15ce 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ ], "require": { "php": "^8.0", - "longman/telegram-bot": "^0.78", + "longman/telegram-bot": "^0.81", "longman/ip-tools": "^1.2", "psr/log": "^1.0|^2.0|^3.0" },