Bot API 6.4, 6.5, 6.6

This commit is contained in:
Sys 2023-03-18 21:06:39 +01:00
parent 59ea4ab997
commit b15594076f
No known key found for this signature in database
GPG Key ID: 3CD2C29F8AB39BFD
2 changed files with 13 additions and 2 deletions

View File

@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [4.0.5] - 2023-03-18
### Added
- Support for bot API 6.4.0, 6.5.0 and 6.6.0.
## [4.0.4] - 2022-11-05
### Added
- Support for bot API 6.3.0.
@ -184,7 +188,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.4...HEAD
[Unreleased]: https://github.com/Sysbot-org/tgscraper/compare/4.0.5...HEAD
[4.0.5]: https://github.com/Sysbot-org/tgscraper/compare/4.0.4...4.0.5
[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

View File

@ -46,8 +46,11 @@ class Versions
public const V610 = '6.1.0';
public const V620 = '6.2.0';
public const V630 = '6.3.0';
public const V640 = '6.4.0';
public const V650 = '6.5.0';
public const V660 = '6.6.0';
public const LATEST = 'latest';
public const STABLE = self::V630;
public const STABLE = self::V660;
public const URLS = [
self::V100 => 'https://web.archive.org/web/20150714025308id_/https://core.telegram.org/bots/api/',
@ -92,6 +95,9 @@ class Versions
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::V640 => 'https://web.archive.org/web/20221230181046id_/https://core.telegram.org/bots/api',
self::V650 => 'https://web.archive.org/web/20230204145800id_/https://core.telegram.org/bots/api',
self::V660 => 'https://web.archive.org/web/20230314174834id_/https://core.telegram.org/bots/api',
self::LATEST => 'https://core.telegram.org/bots/api'
];