Prepare 0.11.0

Bump version and update changelog.
This commit is contained in:
Lars Immisch
2024-05-29 23:43:32 +02:00
parent 3e360b1bb7
commit 0b3f1f41c7
2 changed files with 15 additions and 5 deletions

View File

@@ -1,7 +1,17 @@
# Version 0.10.1 # Version 0.11.0
- revert to not throwing an exception on playback buffer underrun; - Fixed `Mixer.getvolume()` returning outdated value (#126)
instead, return -EPIPE like `PCM.read()` does on overrun; #131 - Fixed PCM crashing with some sample formats due to buffer size
- type hints miscalculation
- Fixed `PCM.read()` ignoring overruns (regression in 0.10.0)
- Reverted to `PCM.write()` not throwing an exception on playback buffer
underrun; instead, return -EPIPE like `PCM.read()` does on overrun (#130)
- Added `PCM.avail()` and `PCM.polldescriptors_revents()` functions
- Added `nominal_bits` and `physical_bits` entries to `PCM.info()`'s
return value
- Added Python type hint file, and adjusted documentation accordingly (#58)
- Improvements to the examples, in particular isine.py (#42)
Contributions by @ossilator and @viinikv.
# Version 0.10.0 # Version 0.10.0
- assorted improvements (#123 from @ossilator) - assorted improvements (#123 from @ossilator)

View File

@@ -8,7 +8,7 @@ from setuptools import setup
from setuptools.extension import Extension from setuptools.extension import Extension
from sys import version from sys import version
pyalsa_version = '0.10.1' pyalsa_version = '0.11.0'
if __name__ == '__main__': if __name__ == '__main__':
setup( setup(