File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "AppStoreVersion"
3
- s . version = "1.0.0 "
3
+ s . version = "1.0.1 "
4
4
s . summary = "An easy Swift framework to check your latest app version available on the AppStore and compare it to the installed version"
5
5
s . description = <<-DESC
6
6
An easy Swift framework to check your latest app version available on the AppStore and compare it to the installed version.
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ open class AppStoreVersion {
112
112
if let appStoreVersion = result [ Keys . kAppStoreVersionKey] as? String {
113
113
self . cache = result
114
114
self . latestVersionAvailable = appStoreVersion
115
- if currentVersion = = appStoreVersion {
115
+ if currentVersion > = appStoreVersion {
116
116
completion ( true , nil )
117
117
} else {
118
118
completion ( false , nil )
You can’t perform that action at this time.
0 commit comments