diff --git a/Changelog.md b/Changelog.md index c81cf75..29335e5 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,11 @@ # Change Log +## v1.0.0-beta.7 (Mar 8, 2023) +- Introducing reactions in Live Event. You can now react to live events in real time for better user interactions. + - Added `LiveEvent.CreateParams.reactionKeys` + - Added `LiveEvent.increaseReactionCount` + - Added `LiveEventDelegate.didReactionCountUpdate` + ## v1.0.0-beta.6 (Jan 9, 2023) - Add interfaces to support streaming from RTMP. diff --git a/Package.swift b/Package.swift index c6853d8..d5d8cef 100644 --- a/Package.swift +++ b/Package.swift @@ -16,8 +16,8 @@ let package = Package( targets: [ .binaryTarget( name: "SendbirdLiveSDK", - url: "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.0.0-beta.6/SendbirdLiveSDK.xcframework.zip", - checksum: "aaf60a01187f77a9842eb80de36d4da16c93f4771c4b5aa055c0e86bb671555a" + url: "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.0.0-beta.7/SendbirdLiveSDK.xcframework.zip", + checksum: "fb764c04217edf0bf6ac6d2adaa2f5edab4578472b8352a8d61bb081663ba18e" ), .target(name: "SendbirdLiveSDKTarget", dependencies: [ diff --git a/SendbirdLiveSDK.podspec b/SendbirdLiveSDK.podspec index 4a84c1e..7faa48a 100644 --- a/SendbirdLiveSDK.podspec +++ b/SendbirdLiveSDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SendbirdLiveSDK' - s.version = "1.0.0-beta.6" + s.version = "1.0.0-beta.7" 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' @@ -10,7 +10,7 @@ Pod::Spec.new do |s| 'Sendbird' => 'sha.sdk_deployment@sendbird.com', 'Ernest Hong' => 'ernest.hong@sendbird.com' } - s.source = { :http => "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.0.0-beta.6/SendbirdLiveSDK.zip", :sha1 => "24c29734d877cc0add12c07c2224dfaa80fa0e46" } + s.source = { :http => "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.0.0-beta.7/SendbirdLiveSDK.zip", :sha1 => "d3422c7bc9523fea6e154e9cccfe17595722b6cd" } s.requires_arc = true s.platform = :ios, '11.0' s.documentation_url = 'https://sendbird.com/docs/live/v1/ios/ref/index.html'