mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-12-22 14:35:00 +01:00
Bump version & update CHANGES.rst for 8.1.0 release
This commit is contained in:
parent
28680ac1d5
commit
23774383dc
3 changed files with 21 additions and 3 deletions
18
CHANGES.rst
18
CHANGES.rst
|
@ -1,6 +1,24 @@
|
||||||
=======
|
=======
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
**2010-10-14**
|
||||||
|
*Released 8.1.0*
|
||||||
|
|
||||||
|
New features
|
||||||
|
- Support Bot API 3.4 (PR `#865`_).
|
||||||
|
|
||||||
|
Changes
|
||||||
|
- MessgaeHandler & RegexHandler now consider channel_updates.
|
||||||
|
- Fix command not recognized if it is directly followed by a newline (PR `#869`_).
|
||||||
|
- Removed Bot._message_wrapper (PR `#822`_).
|
||||||
|
- Unitests are now also running on Appveyor (Windows VM).
|
||||||
|
- Various unitest improvments.
|
||||||
|
- Documentation fixes.
|
||||||
|
|
||||||
|
.. _`#822`: https://github.com/python-telegram-bot/python-telegram-bot/pull/822
|
||||||
|
.. _`#865`: https://github.com/python-telegram-bot/python-telegram-bot/pull/865
|
||||||
|
.. _`#869`: https://github.com/python-telegram-bot/python-telegram-bot/pull/869
|
||||||
|
|
||||||
**2017-09-01**
|
**2017-09-01**
|
||||||
*Released 8.0.0*
|
*Released 8.0.0*
|
||||||
|
|
||||||
|
|
|
@ -58,9 +58,9 @@ author = u'Leandro Toledo'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '8.0' # telegram.__version__[:3]
|
version = '8.1' # telegram.__version__[:3]
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '8.0.0' # telegram.__version__
|
release = '8.1.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.
|
||||||
|
|
|
@ -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__ = '8.0'
|
__version__ = '8.1.0'
|
||||||
|
|
Loading…
Reference in a new issue