Bot API 6.8

This commit is contained in:
Sys 2023-08-23 16:14:08 +02:00
parent 917dfb1cc8
commit 1dd06c155b
No known key found for this signature in database
GPG Key ID: 3CD2C29F8AB39BFD
2 changed files with 11 additions and 3 deletions

View File

@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [4.0.7] - 2023-08-23
### Added
- Support for bot API 6.8.0.
## [4.0.6] - 2023-03-30
### Added
- Support for bot API 6.7.0.
@ -192,7 +196,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.6...HEAD
[Unreleased]: https://github.com/Sysbot-org/tgscraper/compare/4.0.7...HEAD
[4.0.7]: https://github.com/Sysbot-org/tgscraper/compare/4.0.6...4.0.7
[4.0.6]: https://github.com/Sysbot-org/tgscraper/compare/4.0.5...4.0.6
[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
@ -208,7 +213,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[2.0.1]: https://github.com/Sysbot-org/tgscraper/compare/2.0...2.0.1
[2.0.0]: https://github.com/Sysbot-org/tgscraper/compare/1.4...2.0
[1.4.0]: https://github.com/Sysbot-org/tgscraper/compare/1.3...1.4
[1.3.0]: https://github.com/Sysbot-org/tgscraper/compare/1.2.1...1.3
[1.3.0]: https://github.com/Sysbot-org/tgscraper/compare/1.2.2...1.3
[1.2.2]: https://github.com/Sysbot-org/tgscraper/compare/1.2.1...1.2.2
[1.2.1]: https://github.com/Sysbot-org/tgscraper/compare/1.2...1.2.1
[1.2.0]: https://github.com/Sysbot-org/tgscraper/compare/1.1...1.2
[1.1.0]: https://github.com/Sysbot-org/tgscraper/compare/1.0.2...1.1

View File

@ -50,8 +50,9 @@ class Versions
public const V650 = '6.5.0';
public const V660 = '6.6.0';
public const V670 = '6.7.0';
public const V680 = '6.8.0';
public const LATEST = 'latest';
public const STABLE = self::V670;
public const STABLE = self::V680;
public const URLS = [
self::V100 => 'https://web.archive.org/web/20150714025308id_/https://core.telegram.org/bots/api/',
@ -100,6 +101,7 @@ class Versions
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::V670 => 'https://web.archive.org/web/20230422225636id_/https://core.telegram.org/bots/api',
self::V680 => 'https://web.archive.org/web/20230823081042id_/https://core.telegram.org/bots/api',
self::LATEST => 'https://core.telegram.org/bots/api'
];