From e6cdd906ebe00835c4953244005a71a9b947be50 Mon Sep 17 00:00:00 2001 From: isaacakakpo1 Date: Wed, 13 Sep 2023 19:07:09 +0000 Subject: [PATCH 1/3] - Changes For Release 0.1.10-beta3 --- Podfile | 4 ++-- TelnyxRTC.podspec | 4 ++-- TelnyxRTC/Telnyx/Services/Socket.swift | 6 +++++- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Podfile b/Podfile index cf47762d..cd48d841 100644 --- a/Podfile +++ b/Podfile @@ -1,5 +1,5 @@ # Uncomment the next line to define a global platform for your project -platform :ios, '10.0' +platform :ios, '11.0' target 'TelnyxWebRTCDemo' do # Comment the next line if you don't want to use dynamic frameworks @@ -16,7 +16,7 @@ target 'TelnyxRTC' do # Pods for TelnyxRTC pod 'Bugsnag', '~> 6.9.1' - pod 'Starscream', '~> 4.0.4' + pod 'Starscream', '~> 4.0.6' pod 'WebRTC-lib', "~> 94.0.0" target 'TelnyxRTCTests' do diff --git a/TelnyxRTC.podspec b/TelnyxRTC.podspec index 0002e321..16c55705 100644 --- a/TelnyxRTC.podspec +++ b/TelnyxRTC.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |spec| spec.name = "TelnyxRTC" - spec.version = "0.1.10" + spec.version = "0.1.10-beta3" spec.summary = "Enable Telnyx real-time communication services on iOS." spec.description = "The Telnyx iOS WebRTC Client SDK provides all the functionality you need to start making voice calls from an iPhone." spec.homepage = "https://github.com/team-telnyx/telnyx-webrtc-ios" @@ -22,6 +22,6 @@ Pod::Spec.new do |spec| spec.exclude_files = "TelnyxRTC/Exclude" spec.dependency "Bugsnag", "~> 6.9.1" - spec.dependency "Starscream", "~> 4.0.4" + spec.dependency "Starscream", "~> 4.0.6" spec.dependency "WebRTC-lib", "~> 94.0.0" end diff --git a/TelnyxRTC/Telnyx/Services/Socket.swift b/TelnyxRTC/Telnyx/Services/Socket.swift index d1a168e1..3fe43cd1 100644 --- a/TelnyxRTC/Telnyx/Services/Socket.swift +++ b/TelnyxRTC/Telnyx/Services/Socket.swift @@ -47,7 +47,7 @@ class Socket { // MARK:- WebSocketDelegate extension Socket : WebSocketDelegate { - func didReceive(event: WebSocketEvent, client: WebSocket) { + func didReceive(event: WebSocketEvent, client: WebSocketClient) { switch event { case .connected(let headers): isConnected = true @@ -94,6 +94,10 @@ extension Socket : WebSocketDelegate { break case .reconnectSuggested(_): break + case .peerClosed: + break + @unknown default: + break } } } From 705c78efe3b110d538d65deb11bd96a0915bdb8d Mon Sep 17 00:00:00 2001 From: isaacakakpo1 Date: Wed, 13 Sep 2023 19:08:25 +0000 Subject: [PATCH 2/3] Release for 0.1.10-beta4 --- TelnyxRTC.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TelnyxRTC.podspec b/TelnyxRTC.podspec index 16c55705..1c6f88a9 100644 --- a/TelnyxRTC.podspec +++ b/TelnyxRTC.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |spec| spec.name = "TelnyxRTC" - spec.version = "0.1.10-beta3" + spec.version = "0.1.10-beta4" spec.summary = "Enable Telnyx real-time communication services on iOS." spec.description = "The Telnyx iOS WebRTC Client SDK provides all the functionality you need to start making voice calls from an iPhone." spec.homepage = "https://github.com/team-telnyx/telnyx-webrtc-ios" @@ -10,7 +10,7 @@ Pod::Spec.new do |spec| spec.author = { "Telnyx LLC" => "mobile.app.eng.chapter@telnyx.com" } spec.source = { :git => "https://github.com/team-telnyx/telnyx-webrtc-ios.git", :tag => "#{spec.version}" } - spec.platform = :ios, "10.0" + spec.platform = :ios, "11.0" spec.swift_version = "5.0" spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64', From 3d61c2e8e6e8464fbbc0a3cd2f9d3d6cdb8235af Mon Sep 17 00:00:00 2001 From: isaacakakpo1 Date: Wed, 13 Sep 2023 21:17:24 +0000 Subject: [PATCH 3/3] Release 0.1.10 --- TelnyxRTC.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TelnyxRTC.podspec b/TelnyxRTC.podspec index 1c6f88a9..98b9af10 100644 --- a/TelnyxRTC.podspec +++ b/TelnyxRTC.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |spec| spec.name = "TelnyxRTC" - spec.version = "0.1.10-beta4" + spec.version = "0.1.10" spec.summary = "Enable Telnyx real-time communication services on iOS." spec.description = "The Telnyx iOS WebRTC Client SDK provides all the functionality you need to start making voice calls from an iPhone." spec.homepage = "https://github.com/team-telnyx/telnyx-webrtc-ios"