Skip to content

Commit

Permalink
Release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed Oct 8, 2015
1 parent da2ed11 commit 3057cd3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
Version 0.2.1 (2015-10-08):
* Example applications ``wire.py`` (based on PortAudio's ``patest_wire.c``)
and ``spectrogram.py`` (based on code by Mauris Van Hauwe)

Version 0.2.0 (2015-07-03):
* support for wheels including a dylib for Mac OS X and DLLs for Windows.
* 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
* 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
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.2.0"
__version__ = "0.2.1"

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

0 comments on commit 3057cd3

Please sign in to comment.