Skip to content

Commit

Permalink
Release 2.51.0 (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnguyen9 authored May 8, 2020
1 parent d1acb49 commit 4153e77
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 5 deletions.
12 changes: 11 additions & 1 deletion Taplytics.framework/Headers/Taplytics.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Taplytics.h
// Taplytics v2.50.0
// Taplytics v2.51.0
//
// Copyright © 2018 Taplytics. All rights reserved.
//
Expand Down Expand Up @@ -273,6 +273,16 @@ typedef void(^TLNewSessionBlock)(void);
*/
+ (BOOL)featureFlagEnabled:(nullable NSString*)key;

/**
Determine if a Feature Flag is enabled for this user's device, the method will return true if the Feature Flag is enabled. Feature Flags can be set up through the Taplytics dashboard, pass in the key for the Feature Flag as set up in the Taplytics Dashboard.
@return if feature flag for key is enabled
@param key of feature flag to check
@param defaultValue the default value of the feature flag. If there is no connection or the feature flag does not load then default value will be returned
*/
+ (BOOL)featureFlagEnabled:(nullable NSString*)key defaultValue:(BOOL)defaultValue;

/**
This block will be called asynchronously when the SDK has loaded properties from the server, or return synchronously if properties have already been loaded.
Expand Down
2 changes: 1 addition & 1 deletion Taplytics.framework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.50.0</string>
<string>2.51.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
Expand Down
Binary file modified Taplytics.framework/Taplytics
Binary file not shown.
2 changes: 1 addition & 1 deletion Taplytics.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Taplytics'
s.version = '2.50.0'
s.version = '2.51.0'
s.author = { 'Taplytics' => '[email protected]' }
s.license = { :type => 'Commercial', :text => 'See https://taplytics.com/terms' }
s.homepage = 'https://taplytics.com'
Expand Down
12 changes: 11 additions & 1 deletion Taplytics_tvOS.framework/Headers/Taplytics.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Taplytics.h
// Taplytics v2.50.0
// Taplytics v2.51.0
//
// Copyright © 2018 Taplytics. All rights reserved.
//
Expand Down Expand Up @@ -273,6 +273,16 @@ typedef void(^TLNewSessionBlock)(void);
*/
+ (BOOL)featureFlagEnabled:(nullable NSString*)key;

/**
Determine if a Feature Flag is enabled for this user's device, the method will return true if the Feature Flag is enabled. Feature Flags can be set up through the Taplytics dashboard, pass in the key for the Feature Flag as set up in the Taplytics Dashboard.
@return if feature flag for key is enabled
@param key of feature flag to check
@param defaultValue the default value of the feature flag. If there is no connection or the feature flag does not load then default value will be returned
*/
+ (BOOL)featureFlagEnabled:(nullable NSString*)key defaultValue:(BOOL)defaultValue;

/**
This block will be called asynchronously when the SDK has loaded properties from the server, or return synchronously if properties have already been loaded.
Expand Down
Binary file modified Taplytics_tvOS.framework/Taplytics_tvOS
Binary file not shown.
2 changes: 1 addition & 1 deletion Taplytics_tvOS.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Taplytics_tvOS'
s.version = '2.50.0'
s.version = '2.51.0'
s.author = { 'Taplytics' => '[email protected]' }
s.license = { :type => 'Commercial', :text => 'See https://taplytics.com/terms' }
s.homepage = 'https://taplytics.com'
Expand Down

0 comments on commit 4153e77

Please sign in to comment.