Skip to content

Commit

Permalink
Release v1.0.0-beta.7 - Add reactions to live event
Browse files Browse the repository at this point in the history
  • Loading branch information
mininny committed Mar 8, 2023
1 parent 935b88b commit 9cad69f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down
4 changes: 2 additions & 2 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.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'
Expand All @@ -10,7 +10,7 @@ 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.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'
Expand Down

0 comments on commit 9cad69f

Please sign in to comment.