Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bastian Bechtold committed Feb 2, 2017
1 parent 141824e commit 263bd6a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ In 0.8.0, we changed the default value of ``always_2d`` from ``True``
to ``False``. Also, the order of arguments of the ``write`` function
changed from ``write(data, file, ...)`` to ``write(file, data, ...)``.

In 0.9.0, we changed the ``ctype`` arguments of the ``buffer_*``
methods to ``dtype``, using the Numpy ``dtype`` notation. The old
``ctype`` arguments still work, but are now officially deprecated.

Installation
------------

Expand Down Expand Up @@ -229,3 +233,16 @@ News
``write(data, file, ...)`` to ``write(file, data, ...)``

And many more minor bug fixes.

2017-02-02 V0.9.0 Bastian Bechtold:
Thank you, Matthias Geier, Tomas Garcia, and Todd, for contributions
for this release.

- Adds support for ALAC files.
- Adds new member ``__libsndfile_version__``
- Adds number of frames to ``info`` class
- Adds ``dtype`` argument to ``buffer_*`` methods
- Deprecates ``ctype`` argument to ``buffer_*`` methods
- Adds official support for Python 3.6

And some minor bug fixes.
2 changes: 1 addition & 1 deletion _soundfile_data
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def get_tag(self):

setup(
name='SoundFile',
version='0.8.1',
version='0.9.0',
description='An audio library based on libsndfile, CFFI and NumPy',
author='Bastian Bechtold',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion soundfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
For further information, see http://pysoundfile.readthedocs.org/.
"""
__version__ = "0.8.1"
__version__ = "0.9.0"

import os as _os
import sys as _sys
Expand Down

0 comments on commit 263bd6a

Please sign in to comment.