Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0811f56

Browse files
committed
Bump version to v10.0.0
[ci skip]
1 parent 69acd2b commit 0811f56

File tree

3 files changed

+69
-3
lines changed

3 files changed

+69
-3
lines changed

CHANGES.rst

+66
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,72 @@
11
=======
22
Changes
33
=======
4+
**2018-03-02**
5+
*Released 10.0.0*
6+
7+
Non backward compatabile changes and changed defaults
8+
9+
- JobQueue: Remove deprecated prevent_autostart & put() (PR `#1012`_)
10+
- Bot, Updater: Remove deprecated network_delay (PR `#1012`_)
11+
- Remove deprecated Message.new_chat_member (PR `#1012`_)
12+
- Retry bootstrap phase indefinitely (by default) on network errors (PR `#1018`_)
13+
14+
New Features
15+
16+
- Support v3.6 API (PR `#1006`_)
17+
- User.full_name convinience property (PR `#949`_)
18+
- Add `send_phone_number_to_provider` and `send_email_to_provider` arguments to send_invoice (PR `#986`_)
19+
- Bot: Add shortcut methods reply_{markdown,html} (PR `#827`_)
20+
- Bot: Add shortcut method reply_media_group (PR `#994`_)
21+
- Added utils.helpers.effective_message_type (PR `#826`_)
22+
- Bot.get_file now allows passing a file in addition to file_id (PR `#963`_)
23+
- Add .get_file() to Audio, Document, PhotoSize, Sticker, Video, VideoNote and Voice (PR `#963`_)
24+
- Add .send_*() methods to User and Chat (PR `#963`_)
25+
- Get jobs by name (PR `#1011`_)
26+
- Add Message caption html/markdown methods (PR `#1013`_)
27+
- File.download_as_bytearray - new method to get a d/led file as bytearray (PR `#1019`_)
28+
- File.download(): Now returns a meaningful return value (PR `#1019`_)
29+
- Added conversation timeout in ConversationHandler (PR `#895`_)
30+
31+
Changes
32+
33+
- Store bot in PreCheckoutQuery (PR `#953`_)
34+
- Updater: Issue INFO log upon received signal (PR `#951`_)
35+
- JobQueue: Thread safety fixes (PR `#977`_)
36+
- WebhookHandler: Fix exception thrown during error handling (PR `#985`_)
37+
- Explicitly check update.effective_chat in ConversationHandler.check_update (PR `#959`_)
38+
- Updater: Better handling of timeouts during get_updates (PR `#1007`_)
39+
- Remove unnecessary to_dict() (PR `#834`_)
40+
- CommandHandler - ignore strings in entities and "/" followed by whitespace (PR `#1020`_)
41+
- Documentation & style fixes (PR `#942`_, PR `#956`_, PR `#962`_, PR `#980`_, PR `#983`_)
42+
43+
.. _`#826`: https://github.com/python-telegram-bot/python-telegram-bot/pull/826
44+
.. _`#827`: https://github.com/python-telegram-bot/python-telegram-bot/pull/827
45+
.. _`#834`: https://github.com/python-telegram-bot/python-telegram-bot/pull/834
46+
.. _`#895`: https://github.com/python-telegram-bot/python-telegram-bot/pull/895
47+
.. _`#942`: https://github.com/python-telegram-bot/python-telegram-bot/pull/942
48+
.. _`#949`: https://github.com/python-telegram-bot/python-telegram-bot/pull/949
49+
.. _`#951`: https://github.com/python-telegram-bot/python-telegram-bot/pull/951
50+
.. _`#956`: https://github.com/python-telegram-bot/python-telegram-bot/pull/956
51+
.. _`#953`: https://github.com/python-telegram-bot/python-telegram-bot/pull/953
52+
.. _`#962`: https://github.com/python-telegram-bot/python-telegram-bot/pull/962
53+
.. _`#959`: https://github.com/python-telegram-bot/python-telegram-bot/pull/959
54+
.. _`#963`: https://github.com/python-telegram-bot/python-telegram-bot/pull/963
55+
.. _`#977`: https://github.com/python-telegram-bot/python-telegram-bot/pull/977
56+
.. _`#980`: https://github.com/python-telegram-bot/python-telegram-bot/pull/980
57+
.. _`#983`: https://github.com/python-telegram-bot/python-telegram-bot/pull/983
58+
.. _`#985`: https://github.com/python-telegram-bot/python-telegram-bot/pull/985
59+
.. _`#986`: https://github.com/python-telegram-bot/python-telegram-bot/pull/986
60+
.. _`#994`: https://github.com/python-telegram-bot/python-telegram-bot/pull/994
61+
.. _`#1006`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1006
62+
.. _`#1007`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1007
63+
.. _`#1011`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1011
64+
.. _`#1012`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1012
65+
.. _`#1013`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1013
66+
.. _`#1018`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1018
67+
.. _`#1019`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1019
68+
.. _`#1020`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1020
69+
470
**2017-12-08**
571
*Released 9.0.0*
672

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = '9.0' # telegram.__version__[:3]
61+
version = '10.0' # telegram.__version__[:3]
6262
# The full version, including alpha/beta/rc tags.
63-
release = '9.0.0' # telegram.__version__
63+
release = '10.0.0' # telegram.__version__
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

telegram/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
# You should have received a copy of the GNU Lesser Public License
1818
# along with this program. If not, see [http://www.gnu.org/licenses/].
1919

20-
__version__ = '9.0.0'
20+
__version__ = '10.0.0'

0 commit comments

Comments
 (0)