Skip to content

Commit 6012fa6

Browse files
committed
Bump to version 8.0
1 parent ef9dbac commit 6012fa6

File tree

3 files changed

+44
-3
lines changed

3 files changed

+44
-3
lines changed

CHANGES.rst

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,47 @@
11
=======
22
Changes
33
=======
4+
**2017-09-01**
5+
*Released 8.0.0*
6+
7+
New features
8+
9+
- Fully support Bot Api 3.3 (PR `#806`_).
10+
- DispatcherHandlerStop (`see docs`_).
11+
- Regression fix for text_html & text_markdown (PR `#777`_).
12+
- Added effective_attachment to message (PR `#766`_).
13+
14+
Non backward compatible changes
15+
16+
- Removed Botan support from the library (PR `#776`_).
17+
- Fully support Bot Api 3.3 (PR `#806`_).
18+
- Remove de_json() (PR `#789`_).
19+
20+
Changes
21+
22+
- Sane defaults for tcp socket options on linux (PR `#754`_).
23+
- Add RESTRICTED as constant to ChatMember (PR `#761`_).
24+
- Add rich comparison to CallbackQuery (PR `#764`_).
25+
- Fix get_game_high_scores (PR `#771`_).
26+
- Warn on small con_pool_size during custom initalization of Updater (PR `#793`_).
27+
- Catch exceptions in error handlerfor errors that happen during polling (PR `#810`_).
28+
- For testing we switched to pytest (PR `#788`_).
29+
- Lot's of small improvements to our tests and documentation.
30+
31+
32+
.. _`see docs`: http://python-telegram-bot.readthedocs.io/en/stable/telegram.ext.dispatcher.html#telegram.ext.Dispatcher.add_handler
33+
.. _`#777`: https://github.com/python-telegram-bot/python-telegram-bot/pull/777
34+
.. _`#806`: https://github.com/python-telegram-bot/python-telegram-bot/pull/806
35+
.. _`#766`: https://github.com/python-telegram-bot/python-telegram-bot/pull/766
36+
.. _`#776`: https://github.com/python-telegram-bot/python-telegram-bot/pull/776
37+
.. _`#789`: https://github.com/python-telegram-bot/python-telegram-bot/pull/789
38+
.. _`#754`: https://github.com/python-telegram-bot/python-telegram-bot/pull/754
39+
.. _`#761`: https://github.com/python-telegram-bot/python-telegram-bot/pull/761
40+
.. _`#764`: https://github.com/python-telegram-bot/python-telegram-bot/pull/764
41+
.. _`#771`: https://github.com/python-telegram-bot/python-telegram-bot/pull/771
42+
.. _`#788`: https://github.com/python-telegram-bot/python-telegram-bot/pull/788
43+
.. _`#793`: https://github.com/python-telegram-bot/python-telegram-bot/pull/793
44+
.. _`#810`: https://github.com/python-telegram-bot/python-telegram-bot/pull/810
445

546
**2017-07-28**
647
*Released 7.0.1*

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = '7.0' # telegram.__version__[:3]
61+
version = '8.0' # telegram.__version__[:3]
6262
# The full version, including alpha/beta/rc tags.
63-
release = '7.0.1' # telegram.__version__
63+
release = '8.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

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__ = '7.0.1'
20+
__version__ = '8.0'

0 commit comments

Comments
 (0)