Skip to content

Commit

Permalink
Bump version to v20.0a2
Browse files Browse the repository at this point in the history
  • Loading branch information
Bibo-Joshi committed Jun 27, 2022
1 parent 2d2cede commit df07148
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 3 deletions.
37 changes: 37 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,43 @@
Changelog
=========

Version 20.0a2
==============
*Released 2022-06-27*

This is the technical changelog for version 20.0a2. More elaborate release notes can be found in the news channel `@pythontelegrambotchannel <https://t.me/pythontelegrambotchannel>`_.

Major Changes
-------------

- Full Support for API 6.1 (`#3112`_)

New Features
------------

- Add Additional Shortcut Methods to ``Chat`` (`#3115`_)
- Mermaid-based Example State Diagrams (`#3090`_)

Minor Changes, Documentation Improvements and CI
------------------------------------------------

- Documentation Improvements (`#3103`_, `#3121`_, `#3098`_)
- Stabilize CI (`#3119`_)
- Bump ``pyupgrade`` from 2.32.1 to 2.34.0 (`#3096`_)
- Bump ``furo`` from 2022.6.4 to 2022.6.4.1 (`#3095`_)
- Bump ``mypy`` from 0.960 to 0.961 (`#3093`_)

.. _`#3112`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3112
.. _`#3115`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3115
.. _`#3090`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3090
.. _`#3103`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3103
.. _`#3121`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3121
.. _`#3098`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3098
.. _`#3119`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3119
.. _`#3096`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3096
.. _`#3095`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3095
.. _`#3093`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3093

Version 20.0a1
==============
*Released 2022-06-09*
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
# built documents.
#
# The short X.Y version.
version = "20.0a1" # telegram.__version__[:3]
version = "20.0a2" # telegram.__version__[:3]
# The full version, including alpha/beta/rc tags.
release = "20.0a1" # telegram.__version__
release = "20.0a2" # telegram.__version__

# If your documentation needs a minimal Sphinx version, state it here.
needs_sphinx = "4.5.0"
Expand Down
2 changes: 1 addition & 1 deletion telegram/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __str__(self) -> str:
return version


__version_info__ = Version(major=20, minor=0, micro=0, releaselevel="alpha", serial=1)
__version_info__ = Version(major=20, minor=0, micro=0, releaselevel="alpha", serial=2)
__version__ = str(__version_info__)

# # SETUP.PY MARKER
Expand Down

0 comments on commit df07148

Please sign in to comment.