Skip to content

Commit 96b97dd

Browse files
committed
bumped version to 3.11.0
1 parent d5c7887 commit 96b97dd

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

docs/changelog.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
33
Changelog
44
=========
55

6+
****************
7+
Version 3.11.0
8+
****************
9+
10+
Twitch
11+
------
12+
13+
- Added missing field `emote_mode` to response of :const:`~twitchAPI.twitch.Twitch.get_chat_settings()` and :const:`~twitchAPI.twitch.Twitch.update_chat_settings()` (https://github.com/Teekeks/pyTwitchAPI/issues/234)
14+
15+
Chat
16+
----
17+
18+
- Fixed timing based `AttributeError: 'NoneType' object has no attribute 'get'` in NoticeEvent during reconnect
19+
- Ensured that only Chat Messages will ever be parsed as chat commands
20+
- Added functionality to set per channel based prefixes (https://github.com/Teekeks/pyTwitchAPI/issues/229):
21+
22+
- :const:`~twitchAPI.chat.Chat.set_channel_prefix()` to set a custom prefix for the given channel(s)
23+
- :const:`~twitchAPI.chat.Chat.reset_channel_prefix()` to remove a custom set prefix for the given channel(s)
24+
25+
626
****************
727
Version 3.10.0
828
****************

twitchAPI/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
from .oauth import UserAuthenticator
55
from .chat import Chat
66

7-
VERSION = (3, 10, 0)
7+
VERSION = (3, 11, 0)
88

9-
__version__ = '3.10.0'
9+
__version__ = '3.11.0'

0 commit comments

Comments
 (0)