Skip to content

Commit 4fcfddc

Browse files
authored
Merge pull request #2503 from Badiboy/master
Bump version
2 parents 4969f61 + 012eac4 commit 4fcfddc

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<p align="center">A simple, but extensible Python implementation for the <a href="https://core.telegram.org/bots/api">Telegram Bot API</a>.</p>
1111
<p align="center">Both synchronous and asynchronous.</p>
1212

13-
## <p align="center">Supported Bot API version: <a href="https://core.telegram.org/bots/api#april-11-2025"><img src="https://img.shields.io/badge/Bot%20API-9.0-blue?logo=telegram" alt="Supported Bot API version"></a>
13+
## <p align="center">Supported Bot API version: <a href="https://core.telegram.org/bots/api#july-3-2025"><img src="https://img.shields.io/badge/Bot%20API-9.1-blue?logo=telegram" alt="Supported Bot API version"></a>
1414

1515
<h2><a href='https://pytba.readthedocs.io/en/latest/index.html'>Official documentation</a></h2>
1616
<h2><a href='https://pytba.readthedocs.io/ru/latest/index.html'>Official ru documentation</a></h2>

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
copyright = f'2022-{datetime.now().year}, {author}'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '4.27.0'
25+
release = '4.28.0'
2626

2727

2828
# -- General configuration ---------------------------------------------------

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pyTelegramBotAPI"
7-
version = "4.27.0"
7+
version = "4.28.0"
88
description = "Python Telegram bot api."
99
authors = [{name = "eternnoir", email = "eternnoir@gmail.com"}]
1010
license = {text = "GPL2"}
@@ -22,7 +22,7 @@ classifiers = [
2222
"Environment :: Console",
2323
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)"
2424
]
25-
dependencies = ["requests"]
25+
dependencies = ["pytest", "requests", "wheel", "aiohttp"]
2626

2727
[project.urls]
2828
Homepage = "https://github.com/eternnoir/pyTelegramBotAPI"
@@ -35,7 +35,6 @@ Issues = "https://github.com/eternnoir/pyTelegramBotAPI/issues"
3535
json = ["ujson"]
3636
PIL = ["Pillow"]
3737
redis = ["redis>=3.4.1"]
38-
aiohttp = ["aiohttp"]
3938
fastapi = ["fastapi"]
4039
uvicorn = ["uvicorn"]
4140
psutil = ["psutil"]

telebot/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Versions should comply with PEP440.
22
# This line is parsed in setup.py:
3-
__version__ = '4.27.0'
3+
__version__ = '4.28.0'

0 commit comments

Comments
 (0)