Bot API 5.4.0 update

This commit is contained in:
Sys 2021-11-08 15:57:52 +01:00
parent 05c9d3f2eb
commit 6298361b59
No known key found for this signature in database
GPG Key ID: 3CD2C29F8AB39BFD
1 changed files with 3 additions and 1 deletions

View File

@ -41,8 +41,9 @@ class Versions
public const V510 = '5.1.0';
public const V520 = '5.2.0';
public const V530 = '5.3.0';
public const V540 = '5.4.0';
public const LATEST = 'latest';
public const STABLE = self::V530;
public const STABLE = self::V540;
public const URLS = [
self::V100 => 'https://web.archive.org/web/20150714025308id_/https://core.telegram.org/bots/api/',
@ -79,6 +80,7 @@ class Versions
self::V510 => 'https://web.archive.org/web/20210315055600id_/https://core.telegram.org/bots/api',
self::V520 => 'https://web.archive.org/web/20210428195636id_/https://core.telegram.org/bots/api',
self::V530 => 'https://web.archive.org/web/20210626142851id_/https://core.telegram.org/bots/api',
self::V540 => 'https://web.archive.org/web/20211105152638id_/https://core.telegram.org/bots/api',
self::LATEST => 'https://core.telegram.org/bots/api'
];