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

Support Xcode 10, bump ioslib to 2.2.0 #75

Merged
merged 2 commits into from
Jun 5, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.1.0",
"version": "2.2.0",
"publishConfig": {
"tag": "next"
},
Expand Down
33 changes: 11 additions & 22 deletions src/simulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,7 @@ import { expandPath } from 'appcd-path';
* @type {Object}
*/
export const devicePairCompatibility = {
'>=6.2 <7.0': { // Xcode 6.2, 6.3, 6.4
'>=8.2 <9.0': { // iOS 8.2, 8.3, 8.4
'1.x': true // watchOS 1.0
}
},
'7.x': { // Xcode 7.x
'>=8.2 <9.0': { // iOS 8.2, 8.3, 8.4
'1.x': true // watchOS 1.0
},
'>=9.0 <=9.2': { // iOS 9.0, 9.1, 9.2
'>=2.0 <=2.1': true // watchOS 2.0, 2.1
},
'>=9.3': { // iOS 9.x
'2.2': true // watchOS 2.2
}
},
'8.x': { // Xcode 8.x
'9.x': { // Xcode 9.x
'>=9.0 <=9.2': { // iOS 9.0, 9.1, 9.2
'>=2.0 <=2.1': true // watchOS 2.0, 2.1
},
Expand All @@ -46,12 +30,13 @@ export const devicePairCompatibility = {
'10.x': { // iOS 10.x
'2.2': true, // watchOS 2.2
'3.x': true // watchOS 3.x
},
'11.x': { // iOS 11.x
'>=3.2': true, // watchOS 3.2
'4.x': true // watchOS 4.x
}
},
'9.x': { // Xcode 9.x
'>=9.0 <=9.2': { // iOS 9.0, 9.1, 9.2
'>=2.0 <=2.1': true // watchOS 2.0, 2.1
},
'10.x': { // Xcode 10.x
'>=9.3': { // iOS 9.x
'2.2': true, // watchOS 2.2
'3.x': true // watchOS 3.x
Expand All @@ -60,9 +45,13 @@ export const devicePairCompatibility = {
'2.2': true, // watchOS 2.2
'3.x': true // watchOS 3.x
},
'11.x': {
'11.x': { // iOS 11.x
'>=3.2': 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
}
}
};
Expand Down