summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgaryscavone <garyscavone@users.noreply.github.com>2023-08-01 08:38:47 -0400
committergaryscavone <garyscavone@users.noreply.github.com>2023-08-01 08:38:47 -0400
commitb4f04903312e0e0efffbe77655172e0f060dc085 (patch)
treea58acc0155eef53d9a638d377df871cfcb893fcf
parent2f17e135967e63f011a04f6e4a09b9b9a758a044 (diff)
Release 6.0.1 with soversion bump to 7.
-rw-r--r--RtAudio.cpp2
-rw-r--r--RtAudio.h2
-rw-r--r--configure.ac4
-rw-r--r--doc/doxygen/tutorial.txt6
-rw-r--r--doc/release.txt3
-rw-r--r--meson.build2
6 files changed, 11 insertions, 8 deletions
diff --git a/RtAudio.cpp b/RtAudio.cpp
index 899bb4b..b13f04e 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 <iostream>
diff --git a/RtAudio.h b/RtAudio.h
index d2960f3..e767ddb 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 81e5970..6c1f7cc 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 3adda0a..00feac8 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): <A href="http://www.music.mcgill.ca/~gary/rtaudio/release/rtaudio-6.0.0.tar.gz">Version 6.0.0</A>
+Latest Release (1 August 2023): <A href="http://www.music.mcgill.ca/~gary/rtaudio/release/rtaudio-6.0.1.tar.gz">Version 6.0.1</A>
\section documentation Documentation Links
diff --git a/doc/release.txt b/doc/release.txt
index cc5e597..7fc7431 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 cb31f13..251e9ba 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',