Skip to content

Commit

Permalink
Release 6.0.1 with soversion bump to 7.
Browse files Browse the repository at this point in the history
  • Loading branch information
garyscavone committed Aug 1, 2023
1 parent 2f17e13 commit b4f0490
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion RtAudio.cpp
Expand Up @@ -39,7 +39,7 @@
*/
/************************************************************************/

// RtAudio: Version 6.0.0
// RtAudio: Version 6.0.1

#include "RtAudio.h"
#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion RtAudio.h
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions 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])
Expand All @@ -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)

Expand Down
6 changes: 3 additions & 3 deletions doc/doxygen/tutorial.txt
Expand Up @@ -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)
Expand All @@ -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

Expand Down
3 changes: 3 additions & 0 deletions doc/release.txt
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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',
Expand Down

0 comments on commit b4f0490

Please sign in to comment.