Skip to content

Commit

Permalink
Merge pull request #63 from Plac3hold3r/PH.develop.add-support-ios-11.4
Browse files Browse the repository at this point in the history
Add support for iOS 11.4
  • Loading branch information
Plac3hold3r committed Jun 16, 2018
2 parents 07f1fd4 + 9c4a7e6 commit 384dbac
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Update to support MvvmCross 6.1.1.
- Update to support Xamarin Forms 3
- Update default template option to Single View
- Add iOS SDK 11.4 as a minimum SDK option

## [v0.10.0-beta](https://github.com/Plac3hold3r/MvxScaffolding/tree/v0.10.0-beta) (2018-05-14)

Expand Down
3 changes: 2 additions & 1 deletion src/MvxScaffolding.Core/Template/TemplateChoices.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//---------------------------------------------------------------------------------
//---------------------------------------------------------------------------------
// Copyright © 2018, Jonathan Froon, Plac3hold3r+github@outlook.com
// MvxScaffolding is licensed using the MIT License
//---------------------------------------------------------------------------------
Expand Down Expand Up @@ -47,6 +47,7 @@ public static class TemplateChoices

public static Dictionary<string, string> MinIosSDKOptions => new Dictionary<string, string>
{
["11.4"] = "iOS 11.4",
["11.3"] = "iOS 11.3",
["11.2"] = "iOS 11.2",
["11.1"] = "iOS 11.1",
Expand Down
4 changes: 4 additions & 0 deletions src/Templates/MvxForms/.template.config/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,10 @@
"defaultValue": "10.0",
"description": "Minimum iOS target SDK version.",
"choices": [
{
"choice": "11.4",
"description": "iOS 11.4"
},
{
"choice": "11.3",
"description": "iOS 11.3"
Expand Down
4 changes: 4 additions & 0 deletions src/Templates/MvxNative/.template.config/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,10 @@
"defaultValue": "10.0",
"description": "Minimum iOS SDK version.",
"choices": [
{
"choice": "11.4",
"description": "iOS 11.4"
},
{
"choice": "11.3",
"description": "iOS 11.3"
Expand Down

0 comments on commit 384dbac

Please sign in to comment.