Merge pull request #225 from tuist/fix-swift-4.2-buildsetting

Change the swift version to 4.2
This commit is contained in:
Oliver Atkinson 2019-02-18 15:48:39 +00:00 committed by GitHub
commit 77632b28dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 3 deletions

View File

@ -19,6 +19,10 @@ Please, check out guidelines: https://keepachangelog.com/en/1.0.0/
- Up attribute from the `Project` model https://github.com/tuist/tuist/pull/228 by @pepibumur. - Up attribute from the `Project` model https://github.com/tuist/tuist/pull/228 by @pepibumur.
### Fixed
- Changed default value of SWIFT_VERSION to 4.2 @ollieatkinson
## 0.11.0 ## 0.11.0
### Added ### Added

View File

@ -6,6 +6,6 @@ public class Constants {
public static let binName = "tuist" public static let binName = "tuist"
public static let gitRepositoryURL = "https://github.com/tuist/tuist.git" public static let gitRepositoryURL = "https://github.com/tuist/tuist.git"
public static let version = "0.11.0" public static let version = "0.11.0"
public static let swiftVersion: String = "4.2.1" public static let swiftVersion: String = "4.2"
public static let bundleName: String = "tuist.zip" public static let bundleName: String = "tuist.zip"
} }

View File

@ -4,7 +4,7 @@ import UIKit
class AppDelegate: UIResponder, UIApplicationDelegate { class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow? var window: UIWindow?
func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
window = UIWindow(frame: UIScreen.main.bounds) window = UIWindow(frame: UIScreen.main.bounds)
let viewController = UIViewController() let viewController = UIViewController()
viewController.view.backgroundColor = .white viewController.view.backgroundColor = .white

View File

@ -4,7 +4,7 @@ import UIKit
class AppDelegate: UIResponder, UIApplicationDelegate { class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow? var window: UIWindow?
func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
window = UIWindow(frame: UIScreen.main.bounds) window = UIWindow(frame: UIScreen.main.bounds)
let viewController = UIViewController() let viewController = UIViewController()
viewController.view.backgroundColor = .white viewController.view.backgroundColor = .white