Skip to content

Commit 0c2d5c1

Browse files
committed
Bump Version to 3.9.0
1 parent b671fc6 commit 0c2d5c1

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

docs/_static/switcher.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"url": "https://pytwitchapi.readthedocs.io/en/latest/"
66
},
77
{
8-
"name": "3.8.0 (stable)",
8+
"name": "3.9.0 (stable)",
99
"version": "stable",
1010
"url": "https://pytwitchapi.readthedocs.io/en/stable/"
1111
},

docs/changelog.rst

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

6+
****************
7+
Version 3.9.0
8+
****************
9+
10+
Twitch
11+
------
12+
13+
- Added the following new Endpoints:
14+
15+
- "Get Channel Followers" :const:`~twitchAPI.twitch.Twitch.get_channel_followers()`
16+
- "Get Followed Channels" :const:`~twitchAPI.twitch.Twitch.get_followed_channels()`
17+
18+
- Fixed TypeError: __api_get_request() got an unexpected keyword argument 'body' (Thanks https://github.com/JC-Chung )
19+
20+
EventSub
21+
--------
22+
23+
- Added new Topic :const:`~twitchAPI.eventsub.EventSub.listen_channel_follow_v2()`
24+
25+
Chat
26+
----
27+
28+
- Bot is now correctly reconnecting and rejoining channels after losing connection
29+
- added :const:`~twitchAPI.chat.Chat.is_subscriber()` (Thanks https://github.com/stolenvw )
30+
- added new Event :const:`~twitchAPI.types.ChatEvent.NOTICE` - Triggered when server sends a notice message (Thanks https://github.com/stolenvw )
31+
32+
633
****************
734
Version 3.8.0
835
****************

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, 8, 0)
7+
VERSION = (3, 9, 0)
88

9-
__version__ = '3.8.0'
9+
__version__ = '3.9.0'

0 commit comments

Comments
 (0)