Bot API 6.3

This commit is contained in:
Sys 2022-11-05 17:01:35 +01:00
parent a94711cb06
commit 59ea4ab997
No known key found for this signature in database
GPG Key ID: 3CD2C29F8AB39BFD
3 changed files with 12 additions and 4 deletions

5
.gitignore vendored
View File

@ -1,3 +1,4 @@
composer.phar
/vendor/
.idea/
vendor/
.phpunit.result.cache
composer.phar

View File

@ -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

View File

@ -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'
];