Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature(xcode12.5): update for a new xcode version and swift 5 #156

Merged

Conversation

relax94
Copy link
Contributor

@relax94 relax94 commented May 11, 2021

No description provided.

@relax94 relax94 force-pushed the feature/update-project-to-xcode-12-5 branch from 6db8a6d to af9d48f Compare May 11, 2021 06:36
@@ -14,12 +14,12 @@ private var uivcRegistrationNameKey: String = "UIViewController.swinjectRegistra
private var uivcWasInjectedKey: String = "UIViewController.wasInjected"

extension UIViewController: RegistrationNameAssociatable, InjectionVerifiable {
internal var swinjectRegistrationName: String? {
public var swinjectRegistrationName: String? {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not sure we really need to make the properties public. We might revert it to internal later.

get { return getAssociatedString(key: &uivcRegistrationNameKey) }
set { setAssociatedString(newValue, key: &uivcRegistrationNameKey) }
}

internal var wasInjected: Bool {
public var wasInjected: Bool {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not sure we really need to make the properties public. We might revert it to internal later.

@yoichitgy yoichitgy merged commit c5d4935 into Swinject:master Jul 2, 2021
@yoichitgy
Copy link
Member

yoichitgy commented Jul 2, 2021

Thank you for making the script😃

CLANG_WARN_SUSPICIOUS_MOVE = YES;
CODE_SIGNING_REQUIRED = NO;
CURRENT_PROJECT_VERSION = 1;
GCC_NO_COMMON_BLOCKS = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deployment target was increased. We might revert it later.

MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = NO;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_VERSION = 4.2;
TARGETED_DEVICE_FAMILY = "1,2";
TVOS_DEPLOYMENT_TARGET = 9.0;
TVOS_DEPLOYMENT_TARGET = 12.0;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deployment target was increased. We might revert it later.

@@ -1138,7 +1140,7 @@
"$(PROJECT_DIR)/Carthage/Build/iOS",
);
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deployment target was increased. We might revert it later.

@@ -1155,7 +1157,7 @@
"$(PROJECT_DIR)/Carthage/Build/iOS",
);
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deployment target was increased. We might revert it later.

yoichitgy added a commit to yoichitgy/SwinjectStoryboard that referenced this pull request Jul 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants