mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-12-22 14:35:00 +01:00
Bump version to v5.3.0
This commit is contained in:
parent
0cd7ecab50
commit
71530f404d
4 changed files with 15 additions and 4 deletions
11
CHANGES.rst
11
CHANGES.rst
|
@ -2,6 +2,17 @@
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
**2016-12-11**
|
||||||
|
|
||||||
|
*Released 5.3*
|
||||||
|
|
||||||
|
- Implement API changes of November 21st (Bot API 2.3)
|
||||||
|
- ``JobQueue`` now supports ``datetime.timedelta`` in addition to seconds
|
||||||
|
- ``JobQueue`` now supports running jobs only on certain days
|
||||||
|
- New ``Filters.reply`` filter
|
||||||
|
- Bugfix for ``Message.edit_reply_markup``
|
||||||
|
- Other bugfixes
|
||||||
|
|
||||||
**2016-10-25**
|
**2016-10-25**
|
||||||
|
|
||||||
*Released 5.2*
|
*Released 5.2*
|
||||||
|
|
|
@ -59,9 +59,9 @@ author = u'Leandro Toledo'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '5.2' # telegram.__version__[:3]
|
version = '5.3' # telegram.__version__[:3]
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '5.2.0' # telegram.__version__
|
release = '5.3.0' # telegram.__version__
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -30,7 +30,7 @@ with codecs.open('README.rst', 'r', 'utf-8') as fd:
|
||||||
license='LGPLv3',
|
license='LGPLv3',
|
||||||
url='https://python-telegram-bot.org/',
|
url='https://python-telegram-bot.org/',
|
||||||
keywords='python telegram bot api wrapper',
|
keywords='python telegram bot api wrapper',
|
||||||
description='Not just a Python wrapper around the Telegram Bot API',
|
description="We have made you a wrapper you can't refuse",
|
||||||
long_description=fd.read(),
|
long_description=fd.read(),
|
||||||
packages=find_packages(exclude=['tests*']),
|
packages=find_packages(exclude=['tests*']),
|
||||||
install_requires=requirements(),
|
install_requires=requirements(),
|
||||||
|
|
|
@ -17,4 +17,4 @@
|
||||||
# You should have received a copy of the GNU Lesser Public License
|
# You should have received a copy of the GNU Lesser Public License
|
||||||
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
||||||
|
|
||||||
__version__ = '5.2.0'
|
__version__ = '5.3.0'
|
||||||
|
|
Loading…
Reference in a new issue