Skip to content

Commit

Permalink
Bot API 6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
sys-001 committed Aug 23, 2023
1 parent 917dfb1 commit 1dd06c1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 3 additions & 1 deletion src/Constants/Versions.php
Original file line number Diff line number Diff line change
Expand Up @@ -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/',
Expand Down Expand Up @@ -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'
];

Expand Down

0 comments on commit 1dd06c1

Please sign in to comment.