From 59ea4ab99727620feeda041429cb7669c41cc394 Mon Sep 17 00:00:00 2001 From: Sys <28715512+sys-001@users.noreply.github.com> Date: Sat, 5 Nov 2022 17:01:35 +0100 Subject: [PATCH] Bot API 6.3 --- .gitignore | 5 +++-- CHANGELOG.md | 7 ++++++- src/Constants/Versions.php | 4 +++- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 8733f8b..e0ef82d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ -composer.phar -/vendor/ .idea/ +vendor/ +.phpunit.result.cache +composer.phar \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 33c790f..b0195c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.4] - 2022-11-05 +### Added +- Support for bot API 6.3.0. + ## [4.0.3] - 2022-08-12 ### Added - Support for bot API 6.2.0. @@ -180,7 +184,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - The parser is now more reliable, it no longer needs to be updated at every bot API release! -[Unreleased]: https://github.com/Sysbot-org/tgscraper/compare/4.0.3...HEAD +[Unreleased]: https://github.com/Sysbot-org/tgscraper/compare/4.0.4...HEAD +[4.0.4]: https://github.com/Sysbot-org/tgscraper/compare/4.0.3...4.0.4 [4.0.3]: https://github.com/Sysbot-org/tgscraper/compare/4.0.2...4.0.3 [4.0.2]: https://github.com/Sysbot-org/tgscraper/compare/4.0.1...4.0.2 [4.0.1]: https://github.com/Sysbot-org/tgscraper/compare/4.0...4.0.1 diff --git a/src/Constants/Versions.php b/src/Constants/Versions.php index d759ba9..13874b1 100644 --- a/src/Constants/Versions.php +++ b/src/Constants/Versions.php @@ -45,8 +45,9 @@ class Versions public const V600 = '6.0.0'; public const V610 = '6.1.0'; public const V620 = '6.2.0'; + public const V630 = '6.3.0'; public const LATEST = 'latest'; - public const STABLE = self::V620; + public const STABLE = self::V630; public const URLS = [ self::V100 => 'https://web.archive.org/web/20150714025308id_/https://core.telegram.org/bots/api/', @@ -90,6 +91,7 @@ class Versions self::V600 => 'https://web.archive.org/web/20220416143511id_/https://core.telegram.org/bots/api', self::V610 => 'https://web.archive.org/web/20220621093855id_/https://core.telegram.org/bots/api', self::V620 => 'https://web.archive.org/web/20220812143250id_/https://core.telegram.org/bots/api', + self::V630 => 'https://web.archive.org/web/20221105155229id_/https://core.telegram.org/bots/api', self::LATEST => 'https://core.telegram.org/bots/api' ];