Skip to content

Commit

Permalink
Release v1.0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaesung Lee committed Jun 30, 2022
1 parent e7b2749 commit d242bae
Show file tree
Hide file tree
Showing 37 changed files with 492 additions and 1,504 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.18 (Jun 30, 2022)
* Updated podspec to set dependency to SendbirdChatSDK as “up to next major version”

### v1.0.17 (Apr 28, 2022)
* Raised minimum target of iOS to `9.0`.
* Raised minimum dependency version of `SendBirdSDK` to `3.0.221`.
Expand Down
4 changes: 2 additions & 2 deletions 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.17"
s.version = "1.0.18"
s.summary = "SendBird Desk iOS Framework"
s.homepage = "https://sendbird.com"
s.license = "Commercial"
Expand All @@ -12,5 +12,5 @@ Pod::Spec.new do |s|
s.ios.vendored_frameworks = 'SendBirdDesk.xcframework'
s.ios.frameworks = ["UIKit", "AVFoundation", "AVKit", "UserNotifications"]

s.dependency 'SendBirdSDK', "~> 3.0.221"
s.dependency 'SendBirdSDK', ">= 3.0.221"
end

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
// Generated by Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
#ifndef SENDBIRDDESK_SWIFT_H
#define SENDBIRDDESK_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -186,6 +186,13 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
# else
# define SWIFT_EXTERN extern
# endif
#endif
#if __has_feature(modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
Expand Down Expand Up @@ -227,7 +234,6 @@ SWIFT_CLASS("_TtC12SendBirdDesk10SBDSKAgent")
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end

@class NSNumber;
@class SBDSKFAQResult;
@class SBDBaseMessage;

Expand Down Expand Up @@ -624,7 +630,7 @@ typedef SWIFT_ENUM(NSInteger, SBDSKTicketPriority, open) {
#endif

#elif defined(__ARM_ARCH_7A__) && __ARM_ARCH_7A__
// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
// Generated by Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
#ifndef SENDBIRDDESK_SWIFT_H
#define SENDBIRDDESK_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -810,6 +816,13 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
# else
# define SWIFT_EXTERN extern
# endif
#endif
#if __has_feature(modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
Expand Down Expand Up @@ -851,7 +864,6 @@ SWIFT_CLASS("_TtC12SendBirdDesk10SBDSKAgent")
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end

@class NSNumber;
@class SBDSKFAQResult;
@class SBDBaseMessage;

Expand Down
Binary file not shown.
Binary file not shown.

This file was deleted.

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
// swift-compiler-version: Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
// swift-module-flags: -target arm64-apple-ios9.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SendBirdDesk
import Foundation
@_exported import SendBirdDesk
Expand Down
Binary file not shown.
Loading

0 comments on commit d242bae

Please sign in to comment.