Skip to content

Commit 6f14f3d

Browse files
committed
v5 deprecation notation
1 parent 95e0ca4 commit 6f14f3d

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

addon.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
<extension point="xbmc.addon.metadata">
1010
<platform>all</platform>
1111
<news>
12-
[fix] omit oauth token for queries with 'required scope: none'
12+
*** Twitch API V5 is deprecated and will be removed entirely on 2/14/18
13+
*** script.module.python.twitch v2 will include the Twitch helix API, and may include breaking changes to current implementations. If you rely on this module follow development at https://github.com/MrSprigster/script.module.python.twitch
14+
15+
[fix/upd] v5.channels deprecated notations for community endpoints, add new communities endpoints
1316
</news>
1417
<assets>
1518
<icon>icon.png</icon>

changelog.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
1.0.3
2+
*** Twitch API V5 is deprecated and will be removed entirely on 2/14/18
3+
*** script.module.python.twitch v2 will include the Twitch helix API, and may include breaking changes,
4+
if you rely on this module follow development at https://github.com/MrSprigster/script.module.python.twitch
5+
6+
[fix/upd] v5.channels deprecated notations for community endpoints, add new communities endpoints
7+
18
1.0.2
29
[fix] omit oauth token for queries with 'required scope: none'
310

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- encoding: utf-8 -*-
22

3-
from twitch.api import v5
3+
from twitch.api import v5 # V5 is deprecated and will be removed entirely on 2/14/18
44
from twitch.api import v5 as default
55

66
__all__ = ['v5', 'default']

resources/lib/twitch/api/v5/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -*- encoding: utf-8 -*-
22
# https://dev.twitch.tv/docs/
3+
# V5 is deprecated and will be removed entirely on 2/14/18
34

45
from twitch.api.v5 import bits # NOQA
56
from twitch.api.v5 import channel_feed # NOQA

0 commit comments

Comments
 (0)