From 392d4e1a9c55360ab444f3efc54003f30d90ebe2 Mon Sep 17 00:00:00 2001 From: Hinrich Mahler Date: Mon, 30 Mar 2020 18:25:53 +0200 Subject: [PATCH] Bump version to v12.5.1 --- CHANGES.rst | 20 ++++++++++++++++++++ docs/source/conf.py | 2 +- telegram/version.py | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index fb081c3d1..b895e79ba 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,26 @@ Changelog ========= +Version 12.5.1 +============== +*Released 2020-03-30* + +**Minor changes, doc fixes or bug fixes:** + +- Add missing docs for `PollHandler` and `PollAnswerHandler` (`#1853`_) +- Fix wording in `Filters` docs (`#1855`_) +- Reorder tests to make them more stable (`#1835`_) +- Make `ConversationHandler` attributes immutable (`#1756`_) +- Make `PrefixHandler` attributes `command` and `prefix` editable (`#1636`_) +- Fix UTC as default `tzinfo` for `Job` (`#1696`_) + +.. _`#1853`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1853 +.. _`#1855`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1855 +.. _`#1835`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1835 +.. _`#1756`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1756 +.. _`#1636`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1636 +.. _`#1696`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1696 + Version 12.5 ============ *Released 2020-03-29* diff --git a/docs/source/conf.py b/docs/source/conf.py index fe66b2b32..1cbd15f6d 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 = '12.5' # telegram.__version__[:3] # The full version, including alpha/beta/rc tags. -release = '12.5' # telegram.__version__ +release = '12.5.1' # 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 e34756fc7..5058ffa12 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__ = '12.5' +__version__ = '12.5.1'