Skip to content

Commit

Permalink
Merge pull request #55 from jdev7/master
Browse files Browse the repository at this point in the history
Updated to iOS 7.0 min deployment target
  • Loading branch information
dataxpress committed Oct 12, 2017
2 parents 1aa3d51 + 8473972 commit a1d8d89
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CountingTestProject.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "CountingTestProject/CountingTestProject-Prefix.pch";
INFOPLIST_FILE = "CountingTestProject/CountingTestProject-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.timgostony.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
Expand All @@ -289,6 +290,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "CountingTestProject/CountingTestProject-Prefix.pch";
INFOPLIST_FILE = "CountingTestProject/CountingTestProject-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.timgostony.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
Expand Down
2 changes: 1 addition & 1 deletion UICountingLabel.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ typedef NSAttributedString* (^UICountingLabelAttributedFormatBlock)(CGFloat valu

@property (nonatomic, copy) UICountingLabelFormatBlock formatBlock;
@property (nonatomic, copy) UICountingLabelAttributedFormatBlock attributedFormatBlock;
@property (nonatomic, copy) void (^completionBlock)();
@property (nonatomic, copy) void (^completionBlock)(void);

-(void)countFrom:(CGFloat)startValue to:(CGFloat)endValue;
-(void)countFrom:(CGFloat)startValue to:(CGFloat)endValue withDuration:(NSTimeInterval)duration;
Expand Down
4 changes: 2 additions & 2 deletions UICountingLabel.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = "UICountingLabel"
s.version = "1.4.0"
s.version = "1.4.1"
s.summary = "Adds animated counting support to UILabel."
s.homepage = "https://github.com/dataxpress/UICountingLabel"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Tim Gostony" => "dataxpress@gmail.com" }
s.source = { :git => "https://github.com/dataxpress/UICountingLabel.git", :tag => s.version.to_s }
s.ios.deployment_target = '5.0'
s.ios.deployment_target = '7.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'UICountingLabel.{h,m}'
s.exclude_files = 'Classes/Exclude'
Expand Down

0 comments on commit a1d8d89

Please sign in to comment.