Skip to content

Commit

Permalink
Bot API 6.4, 6.5, 6.6
Browse files Browse the repository at this point in the history
sys-001 committed Mar 18, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 59ea4ab commit b155940
Showing 2 changed files with 13 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
8 changes: 7 additions & 1 deletion src/Constants/Versions.php
Original file line number Diff line number Diff line change
@@ -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'
];

0 comments on commit b155940

Please sign in to comment.