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.
This commit is contained in:
jaseg 2020-07-19 21:56:39 +02:00
parent dae47345f7
commit d851d7bb14

View file

@ -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',