Bump version & update CHANGES.rst for 8.1.0 release

This commit is contained in:
Noam Meltzer 2017-10-15 00:04:35 +03:00
parent 28680ac1d5
commit 23774383dc
3 changed files with 21 additions and 3 deletions

View file

@ -1,6 +1,24 @@
=======
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**
*Released 8.0.0*

View file

@ -58,9 +58,9 @@ author = u'Leandro Toledo'
# built documents.
#
# 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.
release = '8.0.0' # telegram.__version__
release = '8.1.0' # telegram.__version__
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -17,4 +17,4 @@
# You should have received a copy of the GNU Lesser Public License
# along with this program. If not, see [http://www.gnu.org/licenses/].
__version__ = '8.0'
__version__ = '8.1.0'