Skip to content

Commit 76c065e

Browse files
committed
version bump
1 parent dc3cc3f commit 76c065e

File tree

2 files changed

+29
-23
lines changed

2 files changed

+29
-23
lines changed

docs/changelog.rst

Lines changed: 28 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,41 @@
11
:orphan:
22

3-
Master
4-
=======
3+
2.3.0
4+
=====
55
Massive documentation updates
66

77
- TwitchIO
8-
- Removed unexpected loop termination from `WSConnection._close()`
9-
- Fix bug where # prefixed channel names and capitals in initial_channels would not trigger :func:`twitchio.Client.event_ready`
10-
- Adjusted join channel rate limit handling
11-
- Added `retain_cache` kwarg to Client and Bot. Default is True.
12-
- :func:`User.create_clip` has been fixed by converting bool to string in http request
13-
- Poll endpoints added :func:`User.fetch_polls` :func:`User.create_poll` and :func:`User.end_poll`
14-
- :func:`Client.fetch_cheermotes` color attribute corrected
15-
- :func:`User.fetch_channel_teams` returns empty list if no teams found rather than unhandled error
16-
- Added :func:`User.fetch_goals` method
17-
- Added :func:`User.fetch_chat_settings` and :func:`User.update_chat_settings` methods
18-
- Added :func:`Client.part_channels` method
19-
- Added :func:`Client.event_channel_joined` event. This is dispatched when the bot joins a channel
20-
- Added first kwarg to :func:`CustomReward.get_redemptions`
21-
- Fix :class:`CustomRewardRedemption` so :func:`CustomReward.get_redemptions` returns correctly
8+
- Additions
9+
- Added ``retain_cache`` kwarg to Client and Bot. Default is True.
10+
- Poll endpoints added :func:`twitchio.PartialUser.fetch_polls` :func:`twitchio.PartialUser.create_poll` and :func:`twitchio.PartialUser.end_poll`
11+
- Added :func:`twitchio.PartialUser.fetch_goals` method
12+
- Added :func:`twitchio.PartialUser.fetch_chat_settings` and :func:`twitchio.PartialUser.update_chat_settings` methods
13+
- Added :func:`twitchio.Client.part_channels` method
14+
- Added :func:`~twitchio.Client.event_channel_joined` event. This is dispatched when the bot joins a channel
15+
- Added first kwarg to :func:`twitchio.CustomReward.get_redemptions`
16+
17+
- Bug fixes
18+
- Removed unexpected loop termination from ``WSConnection._close()``
19+
- Fix bug where # prefixed channel names and capitals in initial_channels would not trigger :func:`~twitchio.Client.event_ready`
20+
- Adjusted join channel rate limit handling
21+
- :func:`twitchio.PartialUser.create_clip` has been fixed by converting bool to string in http request
22+
- :func:`twitchio.Client.fetch_cheermotes` color attribute corrected
23+
- :func:`twitchio.PartialUser.fetch_channel_teams` returns empty list if no teams found rather than unhandled error
24+
- Fix :class:`twitchio.CustomRewardRedemption` so :func:`twitchio.CustomReward.get_redemptions` returns correctly
2225

2326
- ext.commands
24-
- :func:`Bot.handle_commands` now also invokes on threads / replies
25-
- Cooldowns are now handled correctly per bucket.
26-
- Fix issue with :func:`Bot.reload_module` where module is reloaded incorrectly if exception occurs
27+
- Additions
28+
- :func:`twitchio.ext.commands.Bot.handle_commands` now also invokes on threads / replies
29+
30+
- Bug fixes
31+
- Cooldowns are now handled correctly per bucket.
32+
- Fix issue with :func:`twitchio.ext.Bot.reload_module` where module is reloaded incorrectly if exception occurs
2733

2834
- ext.pubsub
2935
- Channel subscription model fixes and additional type hints for Optional return values
30-
- PubSubBitsMessage model updated to return correct data and updated typing
31-
- PubSubBitsBadgeMessage model updated to return correct data and updated typing
32-
- PubSubChatMessage now correctly returns a string rather than int for the Bits Events
36+
- :class:`~twitchio.ext.pubsub.PubSubBitsMessage` model updated to return correct data and updated typing
37+
- :class:`~twitchio.ext.pubsub.PubSubBitsBadgeMessage` model updated to return correct data and updated typing
38+
- :class:`~twitchio.ext.pubsub.PubSubChatMessage` now correctly returns a string rather than int for the Bits Events
3339

3440
2.2.0
3541
=====

twitchio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
__author__ = "TwitchIO, PythonistaGuild"
2929
__license__ = "MIT"
3030
__copyright__ = "Copyright 2017-2022 (c) TwitchIO"
31-
__version__ = "2.2.0"
31+
__version__ = "2.3.0"
3232

3333
from .client import Client
3434
from .user import *

0 commit comments

Comments
 (0)