@@ -27,6 +27,10 @@ notably, we changed the import name from ``import pysoundfile`` to
27
27
inconsistencies, particularly in the the ordering and naming of
28
28
function arguments and the removal of the indexing interface.
29
29
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
+
30
34
Installation
31
35
------------
32
36
@@ -208,3 +212,20 @@ News
208
212
libraries for OS X and Windows.
209
213
- Removed ``exclusive_creation `` argument to ``write ``.
210
214
- 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.
0 commit comments