Bot API 6.1

This commit is contained in:
Sys 2022-06-21 19:30:51 +02:00
parent bcaa0f7f13
commit 91a5162c56
No known key found for this signature in database
GPG Key ID: 3CD2C29F8AB39BFD
3 changed files with 3123 additions and 97 deletions

View File

@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [4.0.2] - 2022-06-21
### Added
- Support for bot API 6.1.0
## [4.0.1] - 2022-04-16
### Added
- Support for bot API 6.0.0
@ -169,7 +173,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.1...HEAD
[Unreleased]: https://github.com/Sysbot-org/tgscraper/compare/4.0.2...HEAD
[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
[4.0.0]: https://github.com/Sysbot-org/tgscraper/compare/3.0.3...4.0
[3.0.3]: https://github.com/Sysbot-org/tgscraper/compare/3.0.2...3.0.3

3209
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -43,8 +43,9 @@ class Versions
public const V560 = '5.6.0';
public const V570 = '5.7.0';
public const V600 = '6.0.0';
public const V610 = '6.1.0';
public const LATEST = 'latest';
public const STABLE = self::V600;
public const STABLE = self::V610;
public const URLS = [
self::V100 => 'https://web.archive.org/web/20150714025308id_/https://core.telegram.org/bots/api/',
@ -86,6 +87,7 @@ class Versions
self::V560 => 'https://web.archive.org/web/20220105131529id_/https://core.telegram.org/bots/api',
self::V570 => 'https://web.archive.org/web/20220206103922id_/https://core.telegram.org/bots/api',
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::LATEST => 'https://core.telegram.org/bots/api'
];