Release 1.0.3

This commit is contained in:
Andrew Kelley 2015-10-20 19:57:51 -07:00
parent 2f14aa569e
commit 581c5a487a
2 changed files with 12 additions and 1 deletions

View file

@ -1,3 +1,14 @@
### Version 1.0.3 (2015-10-20)
* Architecture independent header files.
* Add --latency and --sample-rate to sine example.
* ALSA: fix deadlock under some circumstances.
* dummy: fix deadlock when pause called from `write_callback`.
* Fix double clean-up corruption when opening stream fails.
* Add --device and --raw to underflow test.
* ALSA: use period size to calculate buffer size, fixes opening output stream
sometimes resulting in an error.
### Version 1.0.2 (2015-09-24) ### Version 1.0.2 (2015-09-24)
* build: fix GNUInstallDirs not working. * build: fix GNUInstallDirs not working.

View file

@ -19,7 +19,7 @@ endif()
set(LIBSOUNDIO_VERSION_MAJOR 1) set(LIBSOUNDIO_VERSION_MAJOR 1)
set(LIBSOUNDIO_VERSION_MINOR 0) set(LIBSOUNDIO_VERSION_MINOR 0)
set(LIBSOUNDIO_VERSION_PATCH 2) set(LIBSOUNDIO_VERSION_PATCH 3)
set(LIBSOUNDIO_VERSION "${LIBSOUNDIO_VERSION_MAJOR}.${LIBSOUNDIO_VERSION_MINOR}.${LIBSOUNDIO_VERSION_PATCH}") set(LIBSOUNDIO_VERSION "${LIBSOUNDIO_VERSION_MAJOR}.${LIBSOUNDIO_VERSION_MINOR}.${LIBSOUNDIO_VERSION_PATCH}")
message("Configuring libsoundio version ${LIBSOUNDIO_VERSION}") message("Configuring libsoundio version ${LIBSOUNDIO_VERSION}")