Skip to content

Commit 298a47f

Browse files
committed
Release 0.2.0
1 parent d7370be commit 298a47f

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

NEWS.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Version 0.2.0 (2015-07-03):
2+
* support for wheels including a dylib for Mac OS X and DLLs for Windows.
3+
The code for creating the wheels is largely taken from PySoundFile_.
4+
* remove logging (this seemed too intrusive)
5+
* return callback status from `sounddevice.wait()` and add the new function
6+
`sounddevice.get_status()`
7+
* `sounddevice.playrec()`: Rename the arguments *input_channels* and
8+
*input_dtype* to *channels* and *dtype*, respectively
9+
10+
.. _PySoundFile: https://github.com/bastibe/PySoundFile/
11+
112
Version 0.1.0 (2015-06-20):
213
Initial release. Some ideas are taken from PySoundCard_. Thanks to Bastian
314
Bechtold for many fruitful discussions during the development of several

sounddevice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
http://python-sounddevice.rtfd.org/
2424
2525
"""
26-
__version__ = "0.1.0"
26+
__version__ = "0.2.0"
2727

2828
import atexit as _atexit
2929
from cffi import FFI as _FFI

0 commit comments

Comments
 (0)