From 120d8c3fb2c31d035a166062e05606e1d5ec69c4 Mon Sep 17 00:00:00 2001 From: Tomaz Sifrer Date: Mon, 10 Sep 2018 10:46:18 +0200 Subject: [PATCH] Version 0.6.0 --- CHANGELOG.md | 4 ++++ twitch/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2153193..89734ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Master + +## Version 0.6.0 - 2018-09-10 + +- Added default request timeout to all requests for API v5 - Removed support for Python 3.3 - Added TwitchHelix class which adds support for the new Twitch Helix API. - Added Twitch Helix API support for the following endpoints: diff --git a/twitch/__init__.py b/twitch/__init__.py index 0584248..ae04ed0 100644 --- a/twitch/__init__.py +++ b/twitch/__init__.py @@ -1,4 +1,4 @@ from .client import TwitchClient # noqa from .helix.api import TwitchHelix # noqa -__version__ = '0.5.1' +__version__ = '0.6.0'