Skip to content

Commit

Permalink
v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroshihorie committed Feb 8, 2024
1 parent f685aa5 commit ed1b89c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions LiveKitClient.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Pod::Spec.new do |spec|

spec.name = 'LiveKitClient'
spec.version = '2.0.1'
spec.version = '2.0.2'
spec.summary = 'LiveKit Swift Client SDK. Easily build live audio or video experiences into your mobile app, game or website.'
spec.homepage = 'https://github.com/livekit/client-sdk-swift'
spec.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
Expand All @@ -12,7 +12,7 @@ Pod::Spec.new do |spec|
spec.osx.deployment_target = '10.15'

spec.swift_versions = ['4.2', '5']
spec.source = { :git => 'https://github.com/livekit/client-sdk-swift.git', :tag => '2.0.1' }
spec.source = { :git => 'https://github.com/livekit/client-sdk-swift.git', :tag => '2.0.2' }

spec.source_files = 'Sources/**/*'

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Add the dependency and also to your target
let package = Package(
...
dependencies: [
.package(name: "LiveKit", url: "https://github.com/livekit/client-sdk-swift.git", .upToNextMajor("2.0.1")),
.package(name: "LiveKit", url: "https://github.com/livekit/client-sdk-swift.git", .upToNextMajor("2.0.2")),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/LiveKit/Core/Engine.swift
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class Engine: Loggable {
guard let self else { return }

if newState.connectionState == .reconnecting, newState.isReconnectingWithMode == nil {
log("reconnectMode should not be .none", .error)
self.log("reconnectMode should not be .none", .error)
}

if (newState.connectionState != oldState.connectionState) || (newState.isReconnectingWithMode != oldState.isReconnectingWithMode) {
Expand Down
2 changes: 1 addition & 1 deletion Sources/LiveKit/LiveKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ let logger = Logger(label: "LiveKitSDK")
@objc
public class LiveKitSDK: NSObject {
@objc(sdkVersion)
public static let version = "2.0.1"
public static let version = "2.0.2"

@objc
public static func setLoggerStandardOutput() {
Expand Down
2 changes: 1 addition & 1 deletion Sources/LiveKit/Track/Support/Extensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public extension CGImage {
showsMicrophoneButton: Bool = true)
{
if !Thread.current.isMainThread {
log("Must be called on main thread", .error)
logger.log("Must be called on main thread", .error, type: RPSystemBroadcastPickerView.self)
}

let view = RPSystemBroadcastPickerView()
Expand Down

0 comments on commit ed1b89c

Please sign in to comment.