Skip to content

Commit

Permalink
bumped version to 3.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Teekeks committed Apr 5, 2023
1 parent 61e9364 commit d2c793a
Show file tree
Hide file tree
Showing 3 changed files with 35 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.9.0 (stable)",
"name": "3.10.0 (stable)",
"version": "stable",
"url": "https://pytwitchapi.readthedocs.io/en/stable/"
},
Expand Down
32 changes: 32 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,38 @@
Changelog
=========

****************
Version 3.10.0
****************

Twitch
------

- Added new :const:`~twitchAPI.object.ChatBadgeVersion` related fields to the following Endpoints: (Thanks https://github.com/stolenvw )

- :const:`~twitchAPI.twitch.Twitch.get_chat_badges()`
- :const:`~twitchAPI.twitch.Twitch.get_global_chat_badges()`

- :const:`~twitchAPI.twitch.Twitch.set_user_authentication()` now tries to refresh the given token set if it seems to be out of date
- removed the following deprecated endpoints:

- "Replace Stream Tags"
- "Get Stream Tags"
- "Get All Stream Tags"
- "Redeem Code"
- "Get Code Status"

- Fixed condition logic when parameter `first` was given for the following Endpoints:

- :const:`~twitchAPI.twitch.Twitch.get_chatters()` (Thanks https://github.com/d7415 )
- :const:`~twitchAPI.twitch.Twitch.get_soundtrack_playlist()`
- :const:`~twitchAPI.twitch.Twitch.get_soundtrack_playlists()`

PubSub
------

- PubSub now cleanly reestablishes the connection when the websocket was unexpectedly closed

****************
Version 3.9.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, 9, 0)
VERSION = (3, 10, 0)

__version__ = '3.9.0'
__version__ = '3.10.0'

0 comments on commit d2c793a

Please sign in to comment.