diff --git a/CHANGES.rst b/CHANGES.rst index f6f2bd7d9..bc39ae7af 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,38 @@ ======= Changes ======= +**2018-04-17** +*Released 10.0.2* + +Important fix: + +- Handle utf8 decoding errors (`#1076`_) + +New features: + +- Added Filter.regex (`#1028`_) +- Filters for Category and file types (`#1046`_) +- Added video note filter (`#1067`_) + +Fixes: + +- Fix in telegram.Message (`#1042`_) +- Make chat_id a positional argument inside shortcut methods of Chat and User classes (`#1050`_) +- Make Bot.full_name return a unicode object. (`#1063`_) +- CommandHandler faster check (`#1074`_) +- Correct documentation of Dispatcher.add_handler (`#1071`_) +- Various small fixes to documentation. + +.. _`#1028`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1028 +.. _`#1042`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1042 +.. _`#1046`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1046 +.. _`#1050`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1050 +.. _`#1067`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1067 +.. _`#1063`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1063 +.. _`#1074`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1074 +.. _`#1076`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1076 +.. _`#1071`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1071 + **2018-03-05** *Released 10.0.1* diff --git a/docs/source/conf.py b/docs/source/conf.py index bda89d83b..583e51109 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,7 +60,7 @@ author = u'Leandro Toledo' # The short X.Y version. version = '10.0' # telegram.__version__[:3] # The full version, including alpha/beta/rc tags. -release = '10.0.1' # telegram.__version__ +release = '10.0.2' # telegram.__version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/telegram/version.py b/telegram/version.py index 5a8b4478f..f76e0dd52 100644 --- a/telegram/version.py +++ b/telegram/version.py @@ -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__ = '10.0.1' +__version__ = '10.0.2'