diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 06a7a92c4c3..9cf09547b13 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,73 @@ +streamlink 0.9.0 (2017-11-14) +----------------------------- +Streamlink 0.9.0 has been released! + +This release is mostly code refactoring as well as module inclusion. + +Features: + + - Updates to multiple plugins (electrecetv, tvplayer, Teve2, cnnturk, kanald) + - SOCKS module being included in the Streamlink installer (PySocks) + +Many thanks to those who've contributed in this release! + +If you think that this application is helpful, please consider supporting the maintainers by [donating via the Open collective](https://opencollective.com/streamlink). Not only becoming a backer, but also a sponsor for the (open source) project. + + +:: + + Alexis Murzeau (2): + docs: add new line before codeblock to fix them + Fix sphinx warning on Directive class + + Charlie Drage (1): + Update the release script + + Emrah Er (1): + plugins.canlitv: fix URLs (#1281) + + Jake Robertson (3): + exit with code 130 after a KeyboardInterrupt + refactor error code determination + unify sys.exit() calls + + RosadinTV (5): + Update eltrecetv.py + Update eltrecetv.py + Update plugin_matrix.rst + Add webcast_india_gov.py + Add test_webcast_india_gov.py + + back-to (3): + [zattoo] It won't work with None in Python 3.6, set always a default date instead of None. + [liveme] API update (#1298) + Ignore WinError 10053 / WSAECONNABORTED + + beardypig (10): + plugins.tvplayer: extract the channel id when logged in as a subscriber + installer: include the socks proxy modules + plugins.kanal7: update for page layout change and referrer check + plugins.turkuvaz: fix some turkuvaz sites and add support for anews + plugins.cinergroup: support for different showtv url + plugins.dogus/startv: fix dogus sites + plugins.dogan: fix for teve2 and cnnturk + plugins.dogan: fix for kanald + plugins.tvcatchup: HLS source extraction update + setup: fix PySocks module dependency + + ficofabrid <31028711+ficofabrid@users.noreply.github.com> (1): + Add a single newline at the end of the file. (#1235) + + fozzy (1): + fix huya.com plugin + + steven7851 (1): + plugins.pandatv: fix APIv3 (#1286) + + wlerin (1): + plugin.showroom: update to new api (#1311) + + Streamlink 0.8.1 (2017-09-12) ----------------------------- 0.8.1 of Streamlink! diff --git a/setup.py b/setup.py index a986fbcbfb6..bf659d29416 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ sys_path.insert(0, srcdir) setup(name="streamlink", - version="0.8.1", + version="0.9.0", description="Streamlink is command-line utility that extracts streams " "from various services and pipes them into a video player of " "choice.", diff --git a/src/streamlink/__init__.py b/src/streamlink/__init__.py index 258d7b28815..8cd1428cfe3 100644 --- a/src/streamlink/__init__.py +++ b/src/streamlink/__init__.py @@ -22,7 +22,7 @@ ) __title__ = "streamlink" -__version__ = "0.8.1" +__version__ = "0.9.0" __license__ = "Simplified BSD" __author__ = "Streamlink" __copyright__ = "Copyright 2016 Streamlink"