Skip to content

Commit

Permalink
Release v1.0.0-beta.3 -
Browse files Browse the repository at this point in the history
## v1.0.0-beta.3 (Oct 6, 2022)
- Added custom items to `LiveEvent`.
- Added `title` and `coverURL` to `LiveEvent`.
- Added `LiveEvent.updateLiveEventInfo`.
- Renamed `LiveEvent.Configuration` to `LiveEvent.CreateParams`.
- Added SendbirdLive.getCachedLiveEvent
  • Loading branch information
mininny committed Oct 6, 2022
1 parent b8eba69 commit fce74f7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## v1.0.0-beta.3 (Oct 6, 2022)
- Added custom items to `LiveEvent`.
- Added `title` and `coverURL` to `LiveEvent`.
- Added `LiveEvent.updateLiveEventInfo`.
- Renamed `LiveEvent.Configuration` to `LiveEvent.CreateParams`.
- Added `SendbirdLive.getCachedLiveEvent`.

## v1.0.0-beta.2 (Sep 8, 2022)
- Fix build settings

Expand Down
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ let package = Package(
targets: ["SendbirdLiveSDKTarget"]),
],
dependencies: [
.package(url: "https://github.com/sendbird/sendbird-webrtc-ios", from: "1.5.0"),
.package(url: "https://github.com/sendbird/sendbird-chat-sdk-ios", from: "4.0.0")
.package(url: "https://github.com/sendbird/sendbird-webrtc-ios", from: "1.6.0"),
.package(url: "https://github.com/sendbird/sendbird-chat-sdk-ios", from: "4.0.14")
],
targets: [
.binaryTarget(
name: "SendbirdLiveSDK",
url: "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.0.0-beta.2/SendbirdLiveSDK.xcframework.zip",
checksum: "93f2db85262711ce68c4051a2bb6c609923c79838478fef949d7e63098b904b6"
url: "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.0.0-beta.3/SendbirdLiveSDK.xcframework.zip",
checksum: "03d2b8f46ecf13d394178f7087e0ff0532ea15565b7671c5a8ffe82e09338111"
),
.target(name: "SendbirdLiveSDKTarget",
dependencies: [
Expand Down
8 changes: 4 additions & 4 deletions SendbirdLiveSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SendbirdLiveSDK'
s.version = "1.0.0-beta.2"
s.version = "1.0.0-beta.3"
s.summary = 'Sendbird Live iOS Framework'
s.description = 'Sendbird Live API turns a client app into a live streaming platform where users can broadcast themselves in real-time to their followers.'
s.homepage = 'https://sendbird.com'
Expand All @@ -10,13 +10,13 @@ Pod::Spec.new do |s|
'Sendbird' => '[email protected]',
'Ernest Hong' => '[email protected]'
}
s.source = { :http => "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.0.0-beta.2/SendbirdLiveSDK.zip", :sha1 => "8bdbd67fdda774c1ebd31f28da50fb5eb6ecabd0" }
s.source = { :http => "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.0.0-beta.3/SendbirdLiveSDK.zip", :sha1 => "7fbda4c7efd9c75c7beef34704bf7838d79dbba9" }
s.requires_arc = true
s.platform = :ios, '11.0'
s.documentation_url = 'https://sendbird.com/docs/live/v1/ios/ref/index.html'
s.ios.vendored_frameworks = 'SendbirdLiveSDK/SendbirdLiveSDK.xcframework'
s.dependency "SendBirdWebRTC", "~> 1.5.0"
s.dependency "SendbirdChatSDK", "~> 4.0.0"
s.dependency "SendBirdWebRTC", "~> 1.6.0"
s.dependency "SendbirdChatSDK", "~> 4.0.14"
s.ios.frameworks = ["UIKit", "Foundation", "WebRTC", "AVKit", "MediaPlayer", "Network", "CoreTelephony", "VideoToolbox"]
s.ios.library = 'icucore'
end

0 comments on commit fce74f7

Please sign in to comment.