From 960a57986d45f5be16266576f200377616be32a1 Mon Sep 17 00:00:00 2001 From: superchilled Date: Thu, 9 Mar 2023 12:09:50 +0000 Subject: [PATCH] Updating changelog and bumping version number --- CHANGES.md | 4 ++++ README.md | 6 +++--- lib/opentok/version.rb | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index c13acc4..c984f5a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +# 4.6.0 + +* Adds functionality for working with the Audio Connector feature [#247](https://github.com/opentok/OpenTok-Ruby-SDK/pull/247) + # 4.5.1 * Fixes issue with uninitialized constant by adding missing `require` statement [#256](https://github.com/opentok/OpenTok-Ruby-SDK/pull/256) diff --git a/README.md b/README.md index 71e499f..ef0a16c 100644 --- a/README.md +++ b/README.md @@ -326,7 +326,7 @@ For more information on archiving, see the ### Signaling -You can send a signal using the `opentok.signals.send(session_id, connection_id, opts)` method. +You can send a signal using the `opentok.signals.send(session_id, connection_id, opts)` method. If `connection_id` is nil or an empty string, then the signal is send to all valid connections in the session. @@ -461,7 +461,7 @@ You can cause a client to be forced to disconnect from a session by using the ### Forcing clients in a session to mute published audio -You can force the publisher of a specific stream to stop publishing audio using the +You can force the publisher of a specific stream to stop publishing audio using the `opentok.streams.force_mute(session_id, stream_id)` method. You can force the publisher of all streams in a session (except for an optional list of streams) @@ -501,7 +501,7 @@ and `opentok.renders.list(options)` methods. ### Working with Audio Connector -You can start an [Audio Connector](https://tokbox.com/developer/guides/audio-connect) WebSocket +You can start an [Audio Connector](https://tokbox.com/developer/guides/audio-connector) WebSocket by calling the `opentok.websocket.connect()` method. ## Samples diff --git a/lib/opentok/version.rb b/lib/opentok/version.rb index 641e8e2..70bc320 100644 --- a/lib/opentok/version.rb +++ b/lib/opentok/version.rb @@ -1,4 +1,4 @@ module OpenTok # @private - VERSION = '4.5.1' + VERSION = '4.6.0' end