Skip to content

Commit

Permalink
Bump Version to 3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Teekeks committed Feb 26, 2023
1 parent b671fc6 commit 0c2d5c1
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/_static/switcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"url": "https://pytwitchapi.readthedocs.io/en/latest/"
},
{
"name": "3.8.0 (stable)",
"name": "3.9.0 (stable)",
"version": "stable",
"url": "https://pytwitchapi.readthedocs.io/en/stable/"
},
Expand Down
27 changes: 27 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@
Changelog
=========

****************
Version 3.9.0
****************

Twitch
------

- Added the following new Endpoints:

- "Get Channel Followers" :const:`~twitchAPI.twitch.Twitch.get_channel_followers()`
- "Get Followed Channels" :const:`~twitchAPI.twitch.Twitch.get_followed_channels()`

- Fixed TypeError: __api_get_request() got an unexpected keyword argument 'body' (Thanks https://github.com/JC-Chung )

EventSub
--------

- Added new Topic :const:`~twitchAPI.eventsub.EventSub.listen_channel_follow_v2()`

Chat
----

- Bot is now correctly reconnecting and rejoining channels after losing connection
- added :const:`~twitchAPI.chat.Chat.is_subscriber()` (Thanks https://github.com/stolenvw )
- added new Event :const:`~twitchAPI.types.ChatEvent.NOTICE` - Triggered when server sends a notice message (Thanks https://github.com/stolenvw )


****************
Version 3.8.0
****************
Expand Down
4 changes: 2 additions & 2 deletions twitchAPI/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
from .oauth import UserAuthenticator
from .chat import Chat

VERSION = (3, 8, 0)
VERSION = (3, 9, 0)

__version__ = '3.8.0'
__version__ = '3.9.0'

0 comments on commit 0c2d5c1

Please sign in to comment.