From e98a91ed2b36f7c35bd191a5c174003cd969896a Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 19 Jul 2020 21:56:39 +0200 Subject: Bump version to v0.5.0 This release introduces a new ShutdownError thrown in a few places in case the underlying libmpv handle gets closed. Previously, such situations would lead to hangs (wait_for_* methods) or segfaults (e.g. __getattr__). Some of this carnage is still possible, but these remaining issues will be closed over the next releases by throwing ShutdownErrors in more places. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 6ea053e..7378f10 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name = 'python-mpv', - version = '0.4.8', + version = '0.5.0', py_modules = ['mpv'], description = 'A python interface to the mpv media player', url = 'https://github.com/jaseg/python-mpv', -- cgit