Skip to content

Commit

Permalink
Release 1.10.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mininny committed Jun 23, 2023
1 parent e594ce5 commit 5c89cc1
Show file tree
Hide file tree
Showing 25 changed files with 1,608 additions and 50 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

### 1.10.9 (Jun 23, 2023)
* Added `DirectCall.ringingSource`, which indicates the source of the dial event in DirectCall.
* Added `SendbirdCall.incomingCalls`, which returns a list of incoming calls to the current user.

### 1.10.8 (Jun 16, 2023)
* Added `DirectCallDelegate.didCalleeReceiveDial` to notify the caller when the calle has received the call. This delegate method will be called when the callee has received the `SendBirdCallDelegate.didStartRinging` event.

Expand Down
2 changes: 1 addition & 1 deletion SendBirdCalls.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SendBirdCalls"
s.version = "1.10.8"
s.version = "1.10.9"
s.summary = "real-time calls based on Sendbird Calls SDK"
s.description = "Sendbird Calls enables real-time calls between users registered within a Sendbird application"
s.homepage = "https://sendbird.com"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2607,6 +2607,10 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No
/// since:
/// 1.8.0
+ (NSArray<SBCDirectCall *> * _Nonnull)getOngoingCalls SWIFT_WARN_UNUSED_RESULT;
/// Returns all incoming calls by the current user.
/// since:
/// 1.10.9
+ (NSArray<SBCDirectCall *> * _Nonnull)getIncomingCalls SWIFT_WARN_UNUSED_RESULT;
/// Returns the currently authenticated user.
/// since:
/// 1.0.0
Expand Down
Binary file not shown.
Loading

0 comments on commit 5c89cc1

Please sign in to comment.