Skip to content

Commit 7bcc5d3

Browse files
author
Bastian Bechtold
committed
Release 0.8.0
1 parent a299a8b commit 7bcc5d3

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

README.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ notably, we changed the import name from ``import pysoundfile`` to
2727
inconsistencies, particularly in the the ordering and naming of
2828
function arguments and the removal of the indexing interface.
2929

30+
In 0.8.0, we changed the default value of ``always_2d`` from ``True``
31+
to ``False``. Also, the order of arguments of the ``write`` function
32+
changed from ``write(data, file, ...)`` to ``write(file, data, ...)``.
33+
3034
Installation
3135
------------
3236

@@ -208,3 +212,20 @@ News
208212
libraries for OS X and Windows.
209213
- Removed ``exclusive_creation`` argument to ``write``.
210214
- Added ``truncate()`` method.
215+
216+
2015-10-20 V0.8.0 Bastian Bechtold:
217+
Again, Matthias Geier contributed a whole lot of hard work to this
218+
release.
219+
220+
- Changed the default value of ``always_2d`` from ``True`` to
221+
``False``.
222+
- Numpy is now optional, and only loaded for ``read`` and
223+
``write``.
224+
- Added ``SoundFile.buffer_read`` and
225+
``SoundFile.buffer_read_into`` and ``SoundFile.buffer_write``,
226+
which read/write raw data without involving Numpy.
227+
- Added ``info`` function that returns metadata of a sound file.
228+
- Changed the argument order of the ``write`` function from
229+
``write(data, file, ...)`` to ``write(file, data, ...)``
230+
231+
And many more minor bug fixes.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def get_tag(self):
8282

8383
setup(
8484
name='PySoundFile',
85-
version='0.7.0',
85+
version='0.8.0',
8686
description='An audio library based on libsndfile, CFFI and NumPy',
8787
author='Bastian Bechtold',
8888
author_email='[email protected]',

soundfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
For further information, see http://pysoundfile.readthedocs.org/.
99
1010
"""
11-
__version__ = "0.7.0"
11+
__version__ = "0.8.0"
1212

1313
import os as _os
1414
import sys as _sys

0 commit comments

Comments
 (0)