diff --git a/RtAudio.cpp b/RtAudio.cpp index 899bb4b3..b13f04eb 100644 --- a/RtAudio.cpp +++ b/RtAudio.cpp @@ -39,7 +39,7 @@ */ /************************************************************************/ -// RtAudio: Version 6.0.0 +// RtAudio: Version 6.0.1 #include "RtAudio.h" #include diff --git a/RtAudio.h b/RtAudio.h index d2960f39..e767ddb2 100644 --- a/RtAudio.h +++ b/RtAudio.h @@ -48,7 +48,7 @@ #define RTAUDIO_VERSION_MAJOR 6 #define RTAUDIO_VERSION_MINOR 0 -#define RTAUDIO_VERSION_PATCH 0 +#define RTAUDIO_VERSION_PATCH 1 #define RTAUDIO_VERSION_BETA 0 #define RTAUDIO_TOSTRING2(n) #n diff --git a/configure.ac b/configure.ac index 81e59709..6c1f7cc4 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(RtAudio, 6.0.0, gary.scavone@mcgill.ca, rtaudio) +AC_INIT(RtAudio, 6.0.1, gary.scavone@mcgill.ca, rtaudio) AC_CONFIG_AUX_DIR(config) AC_CONFIG_SRCDIR(RtAudio.cpp) AC_CONFIG_FILES([rtaudio.pc Makefile tests/Makefile doc/Makefile doc/Doxyfile]) @@ -19,7 +19,7 @@ AM_INIT_AUTOMAKE([1.14 -Wall -Werror foreign subdir-objects]) # # If any interfaces have been removed since the last public release, then set # age to 0. -m4_define([lt_current], 6) +m4_define([lt_current], 7) m4_define([lt_revision], 0) m4_define([lt_age], 0) diff --git a/doc/doxygen/tutorial.txt b/doc/doxygen/tutorial.txt index 3adda0a2..00feac8e 100644 --- a/doc/doxygen/tutorial.txt +++ b/doc/doxygen/tutorial.txt @@ -13,9 +13,9 @@ RtAudio is a set of C++ classes that provide a common API (Application Programmi RtAudio incorporates the concept of audio streams, which represent audio output (playback) and/or input (recording). Available audio devices and their capabilities can be enumerated and then specified when opening a stream. Where applicable, multiple API support can be compiled and a particular API specified when creating an RtAudio instance. See the \ref apinotes section for information specific to each of the supported audio APIs. -\section whatsnew Latest Updates (Version 6.0.0) +\section whatsnew Latest Updates (Version 6.0.1) -Changes in this release include: +Changes in this release (from 6.0.0) include: - complete rewrite of device enumeration scheme for all APIs to provide persistent IDs within a given instance (significant API change) - discontinued use of C++ exceptions, switched to error code return values from various functions (significant API change) @@ -24,7 +24,7 @@ Changes in this release include: \section download Download -Latest Release (21 July 2023): Version 6.0.0 +Latest Release (1 August 2023): Version 6.0.1 \section documentation Documentation Links diff --git a/doc/release.txt b/doc/release.txt index cc5e5974..7fc74316 100644 --- a/doc/release.txt +++ b/doc/release.txt @@ -2,6 +2,9 @@ RtAudio - a set of C++ classes that provide a common API for realtime audio inpu By Gary P. Scavone, 2001-2023. +v.6.0.1: (1 August 2023) +- soversion bump to 7 + v.6.0.0: (21 July 2023) - see git history for complete list of changes - major API changes concerning device selection / specification diff --git a/meson.build b/meson.build index cb31f13d..251e9ba2 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('RtAudio', 'cpp', - version: '6.0.0', + version: '6.0.1', default_options: ['warning_level=3', 'c_std=c99',