From e1d4849d7dedac511d1e670171564e8cd402c3b5 Mon Sep 17 00:00:00 2001 From: Marcos Griselli Date: Tue, 21 May 2019 11:43:24 -0300 Subject: [PATCH] 2.1.1 release --- .../Pods-SwipeableTabBarController_Example-Info.plist | 2 +- .../SwipeableTabBarController-Info.plist | 2 +- SwipeableTabBarController.podspec | 2 +- fastlane/Fastfile | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Example/Pods/Target Support Files/Pods-SwipeableTabBarController_Example/Pods-SwipeableTabBarController_Example-Info.plist b/Example/Pods/Target Support Files/Pods-SwipeableTabBarController_Example/Pods-SwipeableTabBarController_Example-Info.plist index 7f71fff..92aaf05 100644 --- a/Example/Pods/Target Support Files/Pods-SwipeableTabBarController_Example/Pods-SwipeableTabBarController_Example-Info.plist +++ b/Example/Pods/Target Support Files/Pods-SwipeableTabBarController_Example/Pods-SwipeableTabBarController_Example-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.1.0 + 2.1.1 CFBundleSignature ???? CFBundleVersion diff --git a/Example/Pods/Target Support Files/SwipeableTabBarController/SwipeableTabBarController-Info.plist b/Example/Pods/Target Support Files/SwipeableTabBarController/SwipeableTabBarController-Info.plist index 7f71fff..92aaf05 100644 --- a/Example/Pods/Target Support Files/SwipeableTabBarController/SwipeableTabBarController-Info.plist +++ b/Example/Pods/Target Support Files/SwipeableTabBarController/SwipeableTabBarController-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.1.0 + 2.1.1 CFBundleSignature ???? CFBundleVersion diff --git a/SwipeableTabBarController.podspec b/SwipeableTabBarController.podspec index 6f8aa8d..5ec1558 100644 --- a/SwipeableTabBarController.podspec +++ b/SwipeableTabBarController.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwipeableTabBarController' - s.version = '2.1.0' + s.version = '2.1.1' s.summary = 'A UITabBarController where you can swipe interactively between tabs.' s.description = "Subclass of UITabBarController that adds a swipe recognizer to the lowest UIViewController so you can interactively change tabs." diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 4d3ddd4..8ebfeda 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -27,7 +27,7 @@ platform :ios do end def release(type) - pod_lib_lint + pod_lib_lint(allow_warnings: true) podspec_name = "SwipeableTabBarController.podspec" version = version_bump_podspec(path: podspec_name, bump_type: type) @@ -38,6 +38,6 @@ platform :ios do message: "#{version} release") add_git_tag(tag: "#{version}") push_to_git_remote - pod_push + pod_push(allow_warnings: true) end end