Skip to content

Commit

Permalink
Preparing release 3.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
queue-it committed May 3, 2022
1 parent 9837090 commit 8c3a144
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion QueueITLib/QueueConsts.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

#define QueueCloseUrl @"queueit://close"
#define QueueRestartSessionUrl @"queueit://restartSession"
#define SDKVersion @"iOS-3.0.11";
#define SDKVersion @"iOS-3.0.12";

#endif
4 changes: 4 additions & 0 deletions QueueITLib/QueueITEngine.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
@property (nonatomic, weak)id<QueueViewClosedDelegate> _Nullable queueViewClosedDelegate;
@property (nonatomic, weak)id<QueueSessionRestartDelegate> _Nullable queueSessionRestartDelegate;
@property (nonatomic, strong)NSString* _Nullable errorMessage;
@property (nonatomic, copy)NSString* _Nonnull customerId;
@property (nonatomic, copy)NSString* _Nonnull eventId;
@property (nonatomic, copy)NSString* _Nullable layoutName;
@property (nonatomic, copy)NSString* _Nullable language;

typedef enum {
NetworkUnavailable = -100,
Expand Down
4 changes: 0 additions & 4 deletions QueueITLib/QueueITEngine.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@
@interface QueueITEngine()
@property (nonatomic) Reachability *internetReachability;
@property (nonatomic, weak)UIViewController* host;
@property (nonatomic, copy)NSString* customerId;
@property (nonatomic, copy)NSString* eventId;
@property (nonatomic, copy)NSString* layoutName;
@property (nonatomic, copy)NSString* language;
@property int delayInterval;
@property bool isInQueue;
@property bool requestInProgress;
Expand Down
4 changes: 2 additions & 2 deletions QueueITLibrary.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = "QueueITLibrary"
s.version = "3.0.11"
s.version = "3.0.12"
s.summary = "Library for integrating Queue-it into an iOS app using web uI"
s.homepage = "https://github.com/queueit/ios-webui-sdk"
s.license = 'MIT'
s.authors = { 'Queue-It' => 'https://queue-it.com' }
s.platform = :ios, '9.3'
s.source = { :git => 'https://github.com/queueit/ios-webui-sdk.git', :tag => '3.0.11' }
s.source = { :git => 'https://github.com/queueit/ios-webui-sdk.git', :tag => '3.0.12' }
s.requires_arc = true
s.source_files = "QueueITLib/*.{h,m}"
end

0 comments on commit 8c3a144

Please sign in to comment.