From 6298361b59b2433b1639a318bb28b0e7bd477490 Mon Sep 17 00:00:00 2001 From: Sys <28715512+sys-001@users.noreply.github.com> Date: Mon, 8 Nov 2021 15:57:52 +0100 Subject: [PATCH] Bot API 5.4.0 update --- src/Constants/Versions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Constants/Versions.php b/src/Constants/Versions.php index 8518eb7..ae7764b 100644 --- a/src/Constants/Versions.php +++ b/src/Constants/Versions.php @@ -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' ];