From 1b5713aa5504076caf8193794538a36e2a546c63 Mon Sep 17 00:00:00 2001 From: Michal Zelinka Date: Wed, 10 Mar 2021 19:33:04 +0100 Subject: [PATCH 1/3] Xcode upgrade check --- TravelKit.xcodeproj/project.pbxproj | 2 +- .../xcshareddata/xcschemes/TravelKit-iOS-Universal.xcscheme | 2 +- .../xcshareddata/xcschemes/TravelKit-iOS.xcscheme | 2 +- .../xcshareddata/xcschemes/TravelKit-macOS.xcscheme | 2 +- .../xcshareddata/xcschemes/TravelKit-tvOS.xcscheme | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/TravelKit.xcodeproj/project.pbxproj b/TravelKit.xcodeproj/project.pbxproj index 6c98465..e33db85 100644 --- a/TravelKit.xcodeproj/project.pbxproj +++ b/TravelKit.xcodeproj/project.pbxproj @@ -931,7 +931,7 @@ isa = PBXProject; attributes = { CLASSPREFIX = TK; - LastUpgradeCheck = 1220; + LastUpgradeCheck = 1250; ORGANIZATIONNAME = Tripomatic; TargetAttributes = { D6B2A1281E530AFD005509E8 = { diff --git a/TravelKit.xcodeproj/xcshareddata/xcschemes/TravelKit-iOS-Universal.xcscheme b/TravelKit.xcodeproj/xcshareddata/xcschemes/TravelKit-iOS-Universal.xcscheme index 6689a98..eea8613 100644 --- a/TravelKit.xcodeproj/xcshareddata/xcschemes/TravelKit-iOS-Universal.xcscheme +++ b/TravelKit.xcodeproj/xcshareddata/xcschemes/TravelKit-iOS-Universal.xcscheme @@ -1,6 +1,6 @@ Date: Wed, 10 Mar 2021 19:33:22 +0100 Subject: [PATCH 2/3] Debugging description format fix --- TravelKit/TKTrip.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TravelKit/TKTrip.m b/TravelKit/TKTrip.m index fb6e135..0736ce3 100644 --- a/TravelKit/TKTrip.m +++ b/TravelKit/TKTrip.m @@ -700,7 +700,7 @@ - (BOOL)isEqual:(TKTripInfo *)trip - (NSString *)description { return [NSString stringWithFormat:@"\n\t" - "Name = %@\n\tVersion = %tu\n\tStart date = %@\n\tDays count = %tu\n\tChanged = %c", + "Name = %@\n\tVersion = %tu\n\tStart date = %@\n\tDays count = %tu\n\tChanged = %d", _ID, _name, _version, _startDate, _daysCount, _changed]; } From c462cf336ed106fb52e5b8f15358df3a77a3fa19 Mon Sep 17 00:00:00 2001 From: Michal Zelinka Date: Wed, 10 Mar 2021 19:33:39 +0100 Subject: [PATCH 3/3] Version bump --- TravelKit.podspec | 4 ++-- TravelKit/Config.xcconfig | 4 ++-- TravelKit/Version.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/TravelKit.podspec b/TravelKit.podspec index 53d9dae..317610b 100644 --- a/TravelKit.podspec +++ b/TravelKit.podspec @@ -2,12 +2,12 @@ Pod::Spec.new do |spec| spec.name = 'TravelKit' - spec.version = '3.1.1' + spec.version = '3.1.2' spec.license = 'MIT' spec.homepage = 'https://github.com/sygic-travel/apple-sdk' spec.authors = 'Tripomatic s.r.o.', 'Michal Zelinka' spec.summary = 'Travel SDK for travelling projects' - spec.source = { :http => 'https://github.com/sygic-travel/apple-sdk/releases/download/v3.1.1/TravelKit-3.1.1-iOS.zip' } + spec.source = { :http => 'https://github.com/sygic-travel/apple-sdk/releases/download/v3.1.2/TravelKit-3.1.2-iOS.zip' } spec.documentation_url = 'http://docs.sygictravelapi.com/apple-sdk/latest' spec.module_name = 'TravelKit' diff --git a/TravelKit/Config.xcconfig b/TravelKit/Config.xcconfig index 607bf70..a955674 100644 --- a/TravelKit/Config.xcconfig +++ b/TravelKit/Config.xcconfig @@ -9,5 +9,5 @@ // Configuration settings file format documentation can be found at: // https://help.apple.com/xcode/#/dev745c5c974 -TK_BUNDLE_VERSION = 3.1.1 -TK_BUNDLE_BUILD = 304 +TK_BUNDLE_VERSION = 3.1.2 +TK_BUNDLE_BUILD = 307 diff --git a/TravelKit/Version.h b/TravelKit/Version.h index 2e76f02..9558eaf 100644 --- a/TravelKit/Version.h +++ b/TravelKit/Version.h @@ -9,7 +9,7 @@ #ifndef Version_h #define Version_h -#define TRAVELKIT_VERSION "3.1.1" -#define TRAVELKIT_BUILD 304 +#define TRAVELKIT_VERSION "3.1.2" +#define TRAVELKIT_BUILD 307 #endif /* Version_h */