From 703dd7fabdf1dd2072ebbd311437dc5615b83cd2 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sun, 13 Sep 2020 23:25:27 +0300 Subject: [PATCH 1/3] Fix tests and bump dependencies --- setup.py | 2 +- tests/test_utils/test_text_decorations.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index b21b4e57..00f617ee 100755 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ setup( ], extras_require={ 'proxy': [ - 'aiohttp-socks>=0.3.4,<0.4.0', + 'aiohttp-socks>=0.5.3,<0.6.0', ], 'fast': [ 'uvloop>=0.14.0,<0.15.0', diff --git a/tests/test_utils/test_text_decorations.py b/tests/test_utils/test_text_decorations.py index dd0e595d..cc724dd7 100644 --- a/tests/test_utils/test_text_decorations.py +++ b/tests/test_utils/test_text_decorations.py @@ -10,7 +10,7 @@ class TestTextDecorations: MessageEntity(offset=3, length=34, type=MessageEntityType.BOLD), MessageEntity(offset=12, length=10, type=MessageEntityType.ITALIC), ] - ) == "hi *i'm bold _and italic_\r and still bold*" + ) == "hi *i'm bold _\rand italic_\r and still bold*" def test_unparse_entities_emoji_text(self): """ @@ -22,4 +22,4 @@ class TestTextDecorations: MessageEntity(offset=3, length=34, type=MessageEntityType.BOLD), MessageEntity(offset=12, length=10, type=MessageEntityType.ITALIC), ] - ) == "🚀 *i'm bold _and italic_\r and still bold*" + ) == "🚀 *i'm bold _\rand italic_\r and still bold*" From 8de05b4b865cfa149879f08e7a1e80700b28da59 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Mon, 14 Sep 2020 22:10:51 +0300 Subject: [PATCH 2/3] Bump version --- aiogram/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiogram/__init__.py b/aiogram/__init__.py index 9a11b7a2..e9ba5b53 100644 --- a/aiogram/__init__.py +++ b/aiogram/__init__.py @@ -43,5 +43,5 @@ __all__ = ( 'utils', ) -__version__ = '2.10' +__version__ = '2.10.1' __api_version__ = '4.9' From 7edf9e77b6866a8076916a12d0b4c5691136b503 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Tue, 6 Jul 2021 01:23:51 +0300 Subject: [PATCH 3/3] Bump version --- aiogram/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiogram/__init__.py b/aiogram/__init__.py index e04c6870..d1d71744 100644 --- a/aiogram/__init__.py +++ b/aiogram/__init__.py @@ -43,5 +43,5 @@ __all__ = ( 'utils', ) -__version__ = '2.14.1' +__version__ = '2.14.2' __api_version__ = '5.3'