Skip to content

Commit

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

****************
Version 3.2.1
****************

- Fixed bug that resulted in a timeout when reading big API requests
- Optimized the use of Sessions, slight to decent performance optimization for API requests, especially for async generators

****************
Version 3.2.0
****************
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.2.0'
release = 'v3.2.1'
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.2.0.1
version=3.2.1
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.2.0.1",
version="3.2.1",
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, 2, 0)
VERSION = (3, 2, 1)

__version__ = '3.2.0'
__version__ = '3.2.1'

0 comments on commit 9465d5c

Please sign in to comment.