Skip to content

Commit 6d453b7

Browse files
committed
Bump to v10.0.2
1 parent 716f526 commit 6d453b7

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

CHANGES.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,38 @@
11
=======
22
Changes
33
=======
4+
**2018-04-17**
5+
*Released 10.0.2*
6+
7+
Important fix:
8+
9+
- Handle utf8 decoding errors (`#1076`_)
10+
11+
New features:
12+
13+
- Added Filter.regex (`#1028`_)
14+
- Filters for Category and file types (`#1046`_)
15+
- Added video note filter (`#1067`_)
16+
17+
Fixes:
18+
19+
- Fix in telegram.Message (`#1042`_)
20+
- Make chat_id a positional argument inside shortcut methods of Chat and User classes (`#1050`_)
21+
- Make Bot.full_name return a unicode object. (`#1063`_)
22+
- CommandHandler faster check (`#1074`_)
23+
- Correct documentation of Dispatcher.add_handler (`#1071`_)
24+
- Various small fixes to documentation.
25+
26+
.. _`#1028`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1028
27+
.. _`#1042`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1042
28+
.. _`#1046`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1046
29+
.. _`#1050`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1050
30+
.. _`#1067`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1067
31+
.. _`#1063`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1063
32+
.. _`#1074`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1074
33+
.. _`#1076`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1076
34+
.. _`#1071`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1071
35+
436
**2018-03-05**
537
*Released 10.0.1*
638

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = '10.0' # telegram.__version__[:3]
6262
# The full version, including alpha/beta/rc tags.
63-
release = '10.0.1' # telegram.__version__
63+
release = '10.0.2' # telegram.__version__
6464

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

telegram/version.py

Lines changed: 1 addition & 1 deletion
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__ = '10.0.1'
20+
__version__ = '10.0.2'

0 commit comments

Comments
 (0)