mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 15:17:00 +01:00
Bump version to v12.5
This commit is contained in:
parent
55e3ecf9f8
commit
90729c21d7
3 changed files with 48 additions and 3 deletions
45
CHANGES.rst
45
CHANGES.rst
|
@ -2,6 +2,51 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
Version 12.5
|
||||||
|
============
|
||||||
|
*Released 2020-03-29*
|
||||||
|
|
||||||
|
**New Features:**
|
||||||
|
|
||||||
|
- `Bot.link` gives the `t.me` link of the bot (`#1770`_)
|
||||||
|
|
||||||
|
**Major Changes:**
|
||||||
|
|
||||||
|
- Bot API 4.5 and 4.6 support. (`#1508`_, `#1723`_)
|
||||||
|
|
||||||
|
**Minor changes, CI improvements or bug fixes:**
|
||||||
|
|
||||||
|
- Remove legacy CI files (`#1783`_, `#1791`_)
|
||||||
|
- Update pre-commit config file (`#1787`_)
|
||||||
|
- Remove builtin names (`#1792`_)
|
||||||
|
- CI improvements (`#1808`_, `#1848`_)
|
||||||
|
- Support Python 3.8 (`#1614`_, `#1824`_)
|
||||||
|
- Use stale bot for auto closing stale issues (`#1820`_, `#1829`_, `#1840`_)
|
||||||
|
- Doc fixes (`#1778`_, `#1818`_)
|
||||||
|
- Fix typo in `edit_message_media` (`#1779`_)
|
||||||
|
- In examples, answer CallbackQueries and use `edit_message_text` shortcut (`#1721`_)
|
||||||
|
- Revert accidental change in vendored urllib3 (`#1775`_)
|
||||||
|
|
||||||
|
.. _`#1783`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1783
|
||||||
|
.. _`#1787`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1787
|
||||||
|
.. _`#1792`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1792
|
||||||
|
.. _`#1791`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1791
|
||||||
|
.. _`#1808`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1808
|
||||||
|
.. _`#1614`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1614
|
||||||
|
.. _`#1770`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1770
|
||||||
|
.. _`#1824`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1824
|
||||||
|
.. _`#1820`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1820
|
||||||
|
.. _`#1829`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1829
|
||||||
|
.. _`#1840`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1840
|
||||||
|
.. _`#1778`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1778
|
||||||
|
.. _`#1779`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1779
|
||||||
|
.. _`#1721`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1721
|
||||||
|
.. _`#1775`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1775
|
||||||
|
.. _`#1848`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1848
|
||||||
|
.. _`#1818`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1818
|
||||||
|
.. _`#1508`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1508
|
||||||
|
.. _`#1723`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1723
|
||||||
|
|
||||||
Version 12.4.2
|
Version 12.4.2
|
||||||
==============
|
==============
|
||||||
*Released 2020-02-10*
|
*Released 2020-02-10*
|
||||||
|
|
|
@ -58,9 +58,9 @@ author = u'Leandro Toledo'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '12.4' # telegram.__version__[:3]
|
version = '12.5' # telegram.__version__[:3]
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '12.4.2' # telegram.__version__
|
release = '12.5' # 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__ = '12.4.2'
|
__version__ = '12.5'
|
||||||
|
|
Loading…
Reference in a new issue