Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed Jul 3, 2015
1 parent d7370be commit 298a47f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Version 0.2.0 (2015-07-03):
* support for wheels including a dylib for Mac OS X and DLLs for Windows.
The code for creating the wheels is largely taken from PySoundFile_.
* remove logging (this seemed too intrusive)
* return callback status from `sounddevice.wait()` and add the new function
`sounddevice.get_status()`
* `sounddevice.playrec()`: Rename the arguments *input_channels* and
*input_dtype* to *channels* and *dtype*, respectively

.. _PySoundFile: https://github.com/bastibe/PySoundFile/

Version 0.1.0 (2015-06-20):
Initial release. Some ideas are taken from PySoundCard_. Thanks to Bastian
Bechtold for many fruitful discussions during the development of several
Expand Down
2 changes: 1 addition & 1 deletion sounddevice.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
http://python-sounddevice.rtfd.org/
"""
__version__ = "0.1.0"
__version__ = "0.2.0"

import atexit as _atexit
from cffi import FFI as _FFI
Expand Down

0 comments on commit 298a47f

Please sign in to comment.