diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b08bed..ed434bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +### Version 1.0.2 (2015-09-24) + + * build: fix GNUInstallDirs not working. + * docs: fix incorrect docs for `soundio_instream_pause`. + * PulseAudio: fix `soundio_outstream_pause` triggering assertion when called + from within `write_callback`. + * fix mirrored memory not working on Linux (fixes corrupted data in ring + buffer). + * os: fix crash when creating non high priority thread fails. + * docs: fix typos and cleanup. + * fix and add test for `soundio_device_nearest_sample_rate`. + ### Version 1.0.1 (2015-09-11) * libsoundio no longer depends on or links against libm. diff --git a/CMakeLists.txt b/CMakeLists.txt index a2c4cb2..a4abb7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ endif() set(LIBSOUNDIO_VERSION_MAJOR 1) set(LIBSOUNDIO_VERSION_MINOR 0) -set(LIBSOUNDIO_VERSION_PATCH 1) +set(LIBSOUNDIO_VERSION_PATCH 2) set(LIBSOUNDIO_VERSION "${LIBSOUNDIO_VERSION_MAJOR}.${LIBSOUNDIO_VERSION_MINOR}.${LIBSOUNDIO_VERSION_PATCH}") message("Configuring libsoundio version ${LIBSOUNDIO_VERSION}")