Skip to content

Commit

Permalink
bumped version to 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Teekeks committed Dec 10, 2022
1 parent 609ffca commit 424a304
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 6 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.0.1 (stable)",
"name": "3.1.0 (stable)",
"version": "stable",
"url": "https://pytwitchapi.readthedocs.io/en/stable/"
},
Expand Down
13 changes: 13 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
Changelog
=========

****************
Version 3.1.0
****************

- Added the Endpoint "Get Chatters" :const:`~twitchAPI.twitch.Twitch.get_chatters()`
- Added the :const:`~twitchAPI.types.AuthScope.MODERATOR_READ_CHATTERS` AuthScope
- Added missing :const:`total` field to :const:`~twitchAPI.twitch.Twitch.get_users_follows()`
- added :const:`~twitchAPI.chat.ChatCommand.send()` shorthand to ChatCommand, this makes sending command replies easier.
- Fixed issue which prevented the Twitch client being used inside a EventSub, PubSub or Chat callback
- Fixed issue with using the wrong API url in :const:`~twitchAPI.twitch.Twitch.create_custom_reward()`
- :const:`twitchAPI.helper.first()` now returns None when there is no data to return instead of raising StopAsyncIteration exception
- Exceptions in Chat callback methods are now propperly displayed

****************
Version 3.0.1
****************
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Lena "Teekeks" During'

# The full version, including alpha/beta/rc tags
release = 'v3.0.1'
release = 'v3.1.0'
language = 'en'

master_doc = 'index'
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name=twitchAPI
version=3.0.1
version=3.1.0
url=https://github.com/Teekeks/pyTwitchAPI
author=Lena "Teekeks" During
author_email=info@teawork.de
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
setup(
packages=find_packages(),
name="twitchAPI",
version="3.0.1",
version="3.1.0",
url="https://github.com/Teekeks/pyTwitchAPI",
author="Lena \"Teekeks\" During",
author_email="info@teawork.de",
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, 0, 0)
VERSION = (3, 1, 0)

__version__ = '3.0.0'
__version__ = '3.1.0'

0 comments on commit 424a304

Please sign in to comment.