Skip to content

Commit

Permalink
[2_x] feat: add lookup table for xcode 13 (#207)
Browse files Browse the repository at this point in the history
* feat: add lookup table for xcode 13

Part of TIMOB-28465

* chore(release): v2.5.7
  • Loading branch information
ewanharris committed Jun 9, 2021
1 parent 7d898fe commit b2c7f9f
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ioslib",
"version": "2.5.6",
"version": "2.5.7",
"publishConfig": {
"tag": "next"
},
Expand Down
40 changes: 39 additions & 1 deletion src/simulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export const devicePairCompatibility = {
'2.2': true, // watchOS 2.2
'3.x': true // watchOS 3.x
},
'11.x': { // iOS 11.x
'11.x': { // iOS 11.x
'>=3.2 <4.0': true, // watchOS 3.2
'4.x': true // watchOS 4.x
},
Expand All @@ -152,6 +152,44 @@ export const devicePairCompatibility = {
'6.x': true, // watchOS 6.x
'7.x': true // watchOS 7.x
}
},
'13.x': { // Xcode 13.x
'>=10.3 <11': { // iOS 10.x
'2.2': true, // watchOS 2.2
'3.x': true // watchOS 3.x
},
'11.x': { // iOS 11.x
'>=3.2 <4.0': true, // watchOS 3.2
'4.x': true // watchOS 4.x
},
'12.x': { // iOS 12.x
'4.x': true, // watchOS 4.x
'5.x': true, // watchOS 5.x
'6.x': true, // watchOS 6.x
'7.x': true, // watchOS 7.x
'8.x': true // watchOS 8.x
},
'13.x': { // iOS 13.x
'4.x': true, // watchOS 4.x
'5.x': true, // watchOS 5.x
'6.x': true, // watchOS 6.x
'7.x': true, // watchOS 7.x
'8.x': true // watchOS 8.x
},
'14.x': { // iOS 14.x
'4.x': true, // watchOS 4.x
'5.x': true, // watchOS 5.x
'6.x': true, // watchOS 6.x
'7.x': true, // watchOS 7.x
'8.x': true // watchOS 8.x
},
'15.x': {
'4.x': true, // watchOS 4.x
'5.x': true, // watchOS 5.x
'6.x': true, // watchOS 6.x
'7.x': true, // watchOS 7.x
'8.x': true // watchOS 8.x
}
}
};

Expand Down

0 comments on commit b2c7f9f

Please sign in to comment.