Skip to content

Commit

Permalink
v1.0.11 - Added closeWithComment:completionHandler: to SBDSKTicket.
Browse files Browse the repository at this point in the history
  • Loading branch information
mininny committed Nov 25, 2020
1 parent d4a43ab commit 17fc1b7
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

### v1.0.11 (Nov 25, 2020)
* Added `closeWithComment:completionHandler:` to `SBDSKTicket`.

### v1.0.10 (Oct 22, 2020)
* Minor bugfix

Expand Down
2 changes: 1 addition & 1 deletion SendBirdDesk.framework.dSYM/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1.0.10</string>
<string>1.0.11</string>
</dict>
</plist>
Binary file not shown.
11 changes: 11 additions & 0 deletions SendBirdDesk.framework/Headers/SBDSKTicket.h
Original file line number Diff line number Diff line change
Expand Up @@ -308,4 +308,15 @@ Sets the specific ticket's related channels. The method accepts an array of stri
- (void)setRelatedChannels:(NSArray<NSString *> * _Nonnull)relatedChannels
completionHandler:(nullable void (^)(SBDError * _Nullable error))completionHandler;


/**
Closes this ticket.
@param comment A comment for this ticket.
@param completionHandler Callback handler.
@since 1.0.11
*/
- (void)closeWithComment:(NSString * _Nullable)comment
completionHandler:(nullable void (^)(SBDSKTicket * _Nullable ticket, SBDError * _Nullable error))completionHandler;

@end
Binary file modified SendBirdDesk.framework/Info.plist
Binary file not shown.
Binary file modified SendBirdDesk.framework/SendBirdDesk
Binary file not shown.
2 changes: 1 addition & 1 deletion SendBirdDesk.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SendBirdDesk"
s.version = "1.0.10"
s.version = "1.0.11"
s.summary = "SendBird Desk iOS Framework"
s.homepage = "https://sendbird.com"
s.license = "Commercial"
Expand Down

0 comments on commit 17fc1b7

Please sign in to comment.