@@ -27,14 +27,15 @@ public extension Expectation {
27
27
}
28
28
29
29
// assume combine change its behaviour with xcode release, along with system update.
30
- public enum XcodeVersion : Comparable {
30
+ public enum XcodeVersion : Equatable , Hashable , Comparable {
31
31
32
32
case v11_0
33
33
case v11_1
34
34
case v11_2
35
35
case v11_3
36
36
case v11_4
37
37
case v11_5
38
+ case v11_6
38
39
39
40
#if canImport(Darwin)
40
41
var systemVersion : Semver {
@@ -58,6 +59,7 @@ public enum XcodeVersion: Comparable {
58
59
case . v11_3: return " 10.15.2 "
59
60
case . v11_4: return " 10.15.4 "
60
61
case . v11_5: return " 10.15.5 "
62
+ case . v11_6: return " 10.15.6 "
61
63
}
62
64
}
63
65
@@ -69,6 +71,7 @@ public enum XcodeVersion: Comparable {
69
71
case . v11_3: return " 13.3.0 "
70
72
case . v11_4: return " 13.4.0 "
71
73
case . v11_5: return " 13.5.0 "
74
+ case . v11_6: return " 13.6.0 "
72
75
}
73
76
}
74
77
@@ -79,7 +82,8 @@ public enum XcodeVersion: Comparable {
79
82
case . v11_2: return " 13.2.0 "
80
83
case . v11_3: return " 13.3.0 "
81
84
case . v11_4: return " 13.4.0 "
82
- case . v11_5: return " 13.5.0 "
85
+ case . v11_5: return " 13.4.6 "
86
+ case . v11_6: return " 13.4.8 "
83
87
}
84
88
}
85
89
@@ -91,6 +95,7 @@ public enum XcodeVersion: Comparable {
91
95
case . v11_3: return " 6.1.1 "
92
96
case . v11_4: return " 6.2.0 "
93
97
case . v11_5: return " 6.2.6 "
98
+ case . v11_6: return " 6.2.8 "
94
99
}
95
100
}
96
101
@@ -102,6 +107,7 @@ public enum XcodeVersion: Comparable {
102
107
case . v11_3: return " 11.3.0 "
103
108
case . v11_4: return " 11.4.0 "
104
109
case . v11_5: return " 11.5.0 "
110
+ case . v11_6: return " 11.6.0 "
105
111
}
106
112
}
107
113
0 commit comments