From afe0a822b5591c2e3ae7fe9f1517d7342e048c46 Mon Sep 17 00:00:00 2001 From: Matthias Geier Date: Sat, 18 Jul 2020 15:53:49 +0200 Subject: [PATCH] Release 0.4.0 --- NEWS.rst | 5 +++++ sounddevice.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/NEWS.rst b/NEWS.rst index 17ccaef..e4f6313 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,8 @@ +0.4.0 (2020-07-18): + * Drop support for Python 2.x + * Fix memory issues in `play()`, `rec()` and `playrec()` + * Example application ``play_stream.py`` + 0.3.15 (2020-03-18): * This will be the last release supporting Python 2.x! diff --git a/sounddevice.py b/sounddevice.py index 233ccbd..26b3625 100644 --- a/sounddevice.py +++ b/sounddevice.py @@ -48,7 +48,7 @@ https://python-sounddevice.readthedocs.io/ """ -__version__ = '0.3.15' +__version__ = '0.4.0' import atexit as _atexit import os as _os