Skip to content

Commit

Permalink
1.0.6
Browse files Browse the repository at this point in the history
rebase 9.0
  • Loading branch information
Luo-Kuang committed Nov 27, 2019
1 parent c59a6cd commit 3c6a9ef
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
Specify it in your Podfile:
```
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
platform :ios, '9.0'
target 'TargetName' do
pod 'ZFAlertController', '~> 1.0.5'
pod 'ZFAlertController', '~> 1.0.6'
end
```
Then, run the following command:
Expand Down
6 changes: 3 additions & 3 deletions ZFAlertController.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@

Pod::Spec.new do |s|
s.name = "ZFAlertController"
s.version = "1.0.5"
s.version = "1.0.6"
s.summary = "No short description of ZFAlertController."
s.homepage = "https://github.com/FranLucky/ZFAlertController"
s.license = { :type => "MIT"}
s.author = { "Pokeey" => "zhangfan8080@gmail.com" }
s.platform = :ios, "8.0"
s.ios.deployment_target = "8.0"
s.platform = :ios, "9.0"
s.ios.deployment_target = "9.0"
s.source = { :git => "https://github.com/FranLucky/ZFAlertController.git", :tag => "#{s.version}" }
s.source_files = "ZFAlertController/*.{h,m}"
s.frameworks = "Foundation","UIKit"
Expand Down
4 changes: 2 additions & 2 deletions ZFAlertController/ZFAlertController.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// ZFAlertController.h
// ZFAlertController
//
// Created by 张帆 on 2019/9/23.
// Copyright © 2019 张帆. All rights reserved.
// Created by Pokey on 2019/9/23.
// Copyright © 2019 Pokey. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
4 changes: 2 additions & 2 deletions ZFAlertController/ZFAlertController.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// ZFAlertController.m
// ZFAlertController
//
// Created by 张帆 on 2019/9/23.
// Copyright © 2019 张帆. All rights reserved.
// Created by Pokey on 2019/9/23.
// Copyright © 2019 Pokey. All rights reserved.
//

#import "ZFAlertController.h"
Expand Down
4 changes: 2 additions & 2 deletions sample/ZFAlertController/AppDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// AppDelegate.h
// ZFAlertViewController
//
// Created by 张帆 on 2019/9/23.
// Copyright © 2019 张帆. All rights reserved.
// Created by Pokey on 2019/9/23.
// Copyright © 2019 Pokey. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
4 changes: 2 additions & 2 deletions sample/ZFAlertController/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// AppDelegate.m
// ZFAlertViewController
//
// Created by 张帆 on 2019/9/23.
// Copyright © 2019 张帆. All rights reserved.
// Created by Pokey on 2019/9/23.
// Copyright © 2019 Pokey. All rights reserved.
//

#import "AppDelegate.h"
Expand Down
4 changes: 2 additions & 2 deletions sample/ZFAlertController/ViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// ViewController.h
// ZFAlertViewController
//
// Created by 张帆 on 2019/9/23.
// Copyright © 2019 张帆. All rights reserved.
// Created by Pokey on 2019/9/23.
// Copyright © 2019 Pokey. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
4 changes: 2 additions & 2 deletions sample/ZFAlertController/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// ViewController.m
// ZFAlertViewController
//
// Created by 张帆 on 2019/9/23.
// Copyright © 2019 张帆. All rights reserved.
// Created by Pokey on 2019/9/23.
// Copyright © 2019 Pokey. All rights reserved.
//

#import "ViewController.h"
Expand Down
4 changes: 2 additions & 2 deletions sample/ZFAlertController/main.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// main.m
// ZFAlertViewController
//
// Created by 张帆 on 2019/9/23.
// Copyright © 2019 张帆. All rights reserved.
// Created by Pokey on 2019/9/23.
// Copyright © 2019 Pokey. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
4 changes: 2 additions & 2 deletions sample/ZFAlertViewController.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 22HHB2G722;
INFOPLIST_FILE = ZFAlertController/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -399,7 +399,7 @@
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 22HHB2G722;
INFOPLIST_FILE = ZFAlertController/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
4 changes: 2 additions & 2 deletions sample/ZFMainTests/ZFMainTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// ZFMainTests.m
// ZFMainTests
//
// Created by 张帆 on 2019/10/23.
// Copyright © 2019 张帆. All rights reserved.
// Created by Pokey on 2019/10/23.
// Copyright © 2019 Pokey. All rights reserved.
//

#import <XCTest/XCTest.h>
Expand Down

0 comments on commit 3c6a9ef

Please sign in to comment.