Skip to content

Commit 37b75f7

Browse files
committed
updated version number
This release includes quite a few new features and bug fixes: - a flush() method - fixed bug that reported the wrong len() - indexing now works for frames and channels - read() reads to the end of the file by default - fixed bug that seeked to the wrong place in some cases. A big thanks to @mgeier, who helped to find and fix a lot of these issues!
1 parent ac983e5 commit 37b75f7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ these are the [Unofficial Windows Binaries for Python][pybuilds].
3333
Having installed those, you can download the Windows installers for
3434
PySoundFile:
3535

36-
[PySoundFile-0.4.1.win-amd64-py2.7](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.4.1.win-amd64-py2.7.exe)
37-
[PySoundFile-0.4.1.win-amd64-py3.3](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.4.1.win-amd64-py3.3.exe)
38-
[PySoundFile-0.4.1.win32-py2.7](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.4.1.win32-py2.7.exe)
39-
[PySoundFile-0.4.1.win32-py3.3](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.4.1.win32-py3.3.exe)
36+
[PySoundFile-0.5.0.win-amd64-py2.7](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.5.0.win-amd64-py2.7.exe)
37+
[PySoundFile-0.5.0.win-amd64-py3.3](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.5.0.win-amd64-py3.3.exe)
38+
[PySoundFile-0.5.0.win32-py2.7](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.5.0.win32-py2.7.exe)
39+
[PySoundFile-0.5.0.win32-py3.3](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.5.0.win32-py3.3.exe)
4040

4141
[WinPython]: https://code.google.com/p/winpython/
4242
[pybuilds]: http://www.lfd.uci.edu/~gohlke/pythonlibs/
@@ -100,8 +100,8 @@ while len(data) > 0:
100100
### Sequence Interface
101101

102102
Alternatively, slices can be used to access data at arbitrary
103-
positions in the file. Note that slices currently only work on frame
104-
indices, not channels.
103+
positions in the file. If you index in two dimensions, you can select
104+
single channels of a multi-channel file.
105105

106106
Here is an example of reading in a whole wave file into a NumPy array:
107107

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name='PySoundFile',
18-
version='0.4.1',
18+
version='0.5.0',
1919
description='An audio library based on libsndfile, CFFI and NumPy',
2020
author='Bastian Bechtold',
2121
author_email='[email protected]',

0 commit comments

Comments
 (0)