Skip to content

Commit acddf33

Browse files
committed
chore: update to Xcode 12
1 parent 1fafb53 commit acddf33

File tree

3 files changed

+47
-15
lines changed

3 files changed

+47
-15
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# RxQueryKit
22

3+
## TBD
4+
5+
### Breaking Changes
6+
7+
- Support for Swift < 5 has been removed.
8+
9+
### Enhancements
10+
11+
- Support for Swift 5.
12+
- Support for QueryKit 0.14 and RxSwift ~> 5.1
13+
314
## 0.6.1
415

516
- Supports RxSwift 3 stable.

RxQueryKit.xcodeproj/project.pbxproj

+26-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
isa = PBXProject;
188188
attributes = {
189189
LastSwiftUpdateCheck = 0700;
190-
LastUpgradeCheck = 0700;
190+
LastUpgradeCheck = 1210;
191191
ORGANIZATIONNAME = Cocode;
192192
TargetAttributes = {
193193
270A33061B9C04DB00AEE90E = {
@@ -329,17 +329,29 @@
329329
isa = XCBuildConfiguration;
330330
buildSettings = {
331331
ALWAYS_SEARCH_USER_PATHS = NO;
332+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
332333
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
333334
CLANG_CXX_LIBRARY = "libc++";
334335
CLANG_ENABLE_MODULES = YES;
335336
CLANG_ENABLE_OBJC_ARC = YES;
337+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
336338
CLANG_WARN_BOOL_CONVERSION = YES;
339+
CLANG_WARN_COMMA = YES;
337340
CLANG_WARN_CONSTANT_CONVERSION = YES;
341+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
338342
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
339343
CLANG_WARN_EMPTY_BODY = YES;
340344
CLANG_WARN_ENUM_CONVERSION = YES;
345+
CLANG_WARN_INFINITE_RECURSION = YES;
341346
CLANG_WARN_INT_CONVERSION = YES;
347+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
348+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
349+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
342350
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
351+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
352+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
353+
CLANG_WARN_STRICT_PROTOTYPES = YES;
354+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
343355
CLANG_WARN_UNREACHABLE_CODE = YES;
344356
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
345357
COPY_PHASE_STRIP = NO;
@@ -376,17 +388,29 @@
376388
isa = XCBuildConfiguration;
377389
buildSettings = {
378390
ALWAYS_SEARCH_USER_PATHS = NO;
391+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
379392
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
380393
CLANG_CXX_LIBRARY = "libc++";
381394
CLANG_ENABLE_MODULES = YES;
382395
CLANG_ENABLE_OBJC_ARC = YES;
396+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
383397
CLANG_WARN_BOOL_CONVERSION = YES;
398+
CLANG_WARN_COMMA = YES;
384399
CLANG_WARN_CONSTANT_CONVERSION = YES;
400+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
385401
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
386402
CLANG_WARN_EMPTY_BODY = YES;
387403
CLANG_WARN_ENUM_CONVERSION = YES;
404+
CLANG_WARN_INFINITE_RECURSION = YES;
388405
CLANG_WARN_INT_CONVERSION = YES;
406+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
407+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
408+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
389409
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
410+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
411+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
412+
CLANG_WARN_STRICT_PROTOTYPES = YES;
413+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
390414
CLANG_WARN_UNREACHABLE_CODE = YES;
391415
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
392416
COPY_PHASE_STRIP = NO;
@@ -405,6 +429,7 @@
405429
MACOSX_DEPLOYMENT_TARGET = 10.10;
406430
MTL_ENABLE_DEBUG_INFO = NO;
407431
SDKROOT = macosx;
432+
SWIFT_COMPILATION_MODE = wholemodule;
408433
SWIFT_VERSION = 5.0;
409434
VERSIONING_SYSTEM = "apple-generic";
410435
VERSION_INFO_PREFIX = "";

RxQueryKit.xcodeproj/xcshareddata/xcschemes/RxQueryKit.xcscheme

+10-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0700"
3+
LastUpgradeVersion = "1210"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -27,6 +27,15 @@
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
2929
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<MacroExpansion>
31+
<BuildableReference
32+
BuildableIdentifier = "primary"
33+
BlueprintIdentifier = "270A33061B9C04DB00AEE90E"
34+
BuildableName = "RxQueryKit.framework"
35+
BlueprintName = "RxQueryKit"
36+
ReferencedContainer = "container:RxQueryKit.xcodeproj">
37+
</BuildableReference>
38+
</MacroExpansion>
3039
<Testables>
3140
<TestableReference
3241
skipped = "NO">
@@ -39,17 +48,6 @@
3948
</BuildableReference>
4049
</TestableReference>
4150
</Testables>
42-
<MacroExpansion>
43-
<BuildableReference
44-
BuildableIdentifier = "primary"
45-
BlueprintIdentifier = "270A33061B9C04DB00AEE90E"
46-
BuildableName = "RxQueryKit.framework"
47-
BlueprintName = "RxQueryKit"
48-
ReferencedContainer = "container:RxQueryKit.xcodeproj">
49-
</BuildableReference>
50-
</MacroExpansion>
51-
<AdditionalOptions>
52-
</AdditionalOptions>
5351
</TestAction>
5452
<LaunchAction
5553
buildConfiguration = "Debug"
@@ -70,8 +68,6 @@
7068
ReferencedContainer = "container:RxQueryKit.xcodeproj">
7169
</BuildableReference>
7270
</MacroExpansion>
73-
<AdditionalOptions>
74-
</AdditionalOptions>
7571
</LaunchAction>
7672
<ProfileAction
7773
buildConfiguration = "Release"

0 commit comments

Comments
 (0)