mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-12-22 14:35:00 +01:00
Releasing v2.5.1
This commit is contained in:
parent
a492f87abd
commit
85e356403a
4 changed files with 11 additions and 4 deletions
9
CHANGES
9
CHANGES
|
@ -1,3 +1,8 @@
|
||||||
|
2015-08-10
|
||||||
|
Released 2.5.1
|
||||||
|
Moved from GPLv2 to LGPLv3
|
||||||
|
|
||||||
|
|
||||||
2015-08-09
|
2015-08-09
|
||||||
Released 2.5
|
Released 2.5
|
||||||
Fixes logging calls in API
|
Fixes logging calls in API
|
||||||
|
@ -6,7 +11,7 @@
|
||||||
2015-08-08
|
2015-08-08
|
||||||
Released 2.4
|
Released 2.4
|
||||||
Fixes Emoji class for Python 3
|
Fixes Emoji class for Python 3
|
||||||
PEP8 improvements
|
PEP8 improvements
|
||||||
|
|
||||||
|
|
||||||
2015-08-08
|
2015-08-08
|
||||||
|
@ -30,7 +35,7 @@
|
||||||
Released 2.0
|
Released 2.0
|
||||||
Fixes bugs
|
Fixes bugs
|
||||||
Improves __str__ over to_json()
|
Improves __str__ over to_json()
|
||||||
Creates abstractclass TelegramObject
|
Creates abstractclass TelegramObject
|
||||||
|
|
||||||
|
|
||||||
2015-07-15
|
2015-07-15
|
||||||
|
|
1
MANIFEST.in
Normal file
1
MANIFEST.in
Normal file
|
@ -0,0 +1 @@
|
||||||
|
include LICENSE LICENSE.lesser Makefile
|
3
setup.py
3
setup.py
|
@ -15,7 +15,7 @@ def read(*paths):
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='python-telegram-bot',
|
name='python-telegram-bot',
|
||||||
version='2.5',
|
version='2.5.1',
|
||||||
author='Leandro Toledo',
|
author='Leandro Toledo',
|
||||||
author_email='leandrotoledodesouza@gmail.com',
|
author_email='leandrotoledodesouza@gmail.com',
|
||||||
license='LGPLv3',
|
license='LGPLv3',
|
||||||
|
@ -24,6 +24,7 @@ setup(
|
||||||
description='A Python wrapper around the Telegram Bot API',
|
description='A Python wrapper around the Telegram Bot API',
|
||||||
long_description=(read('README.rst')),
|
long_description=(read('README.rst')),
|
||||||
packages=find_packages(exclude=['tests*']),
|
packages=find_packages(exclude=['tests*']),
|
||||||
|
include_package_data = True,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__author__ = 'leandrotoledodesouza@gmail.com'
|
__author__ = 'leandrotoledodesouza@gmail.com'
|
||||||
__version__ = '2.5'
|
__version__ = '2.5.1'
|
||||||
|
|
||||||
from .base import TelegramObject
|
from .base import TelegramObject
|
||||||
from .user import User
|
from .user import User
|
||||||
|
|
Loading…
Reference in a new issue