Skip to content

Commit 02a6963

Browse files
authored
Merge pull request #6 from llvm-swift/bump
Update to Swift 5
2 parents bc3598f + 77560fa commit 02a6963

12 files changed

+13
-13
lines changed

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.1
1+
5.0

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ matrix:
55
include:
66
- os: osx
77
language: objective-c
8-
osx_image: xcode9.3
8+
osx_image: xcode10.2
99
before_install:
1010
- gem install xcpretty
1111
script:

Sources/LiteSupport/LiteError.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// LiteError.swift
22
///
3-
/// Copyright 2017, The Silt Language Project.
3+
/// Copyright 2017-2019, The Silt Language Project.
44
///
55
/// This project is released under the MIT license, a copy of which is
66
/// available in the repository.

Sources/LiteSupport/ParallelExecutor.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// ParallelExecutor.swift
22
///
3-
/// Copyright 2017, The Silt Language Project.
3+
/// Copyright 2017-2019, The Silt Language Project.
44
///
55
/// This project is released under the MIT license, a copy of which is
66
/// available in the repository.

Sources/LiteSupport/Run.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// Run.swift
22
///
3-
/// Copyright 2017, The Silt Language Project.
3+
/// Copyright 2017-2019, The Silt Language Project.
44
///
55
/// This project is released under the MIT license, a copy of which is
66
/// available in the repository.

Sources/LiteSupport/RunLineParser.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// RunLineParser.swift
22
///
3-
/// Copyright 2017, The Silt Language Project.
3+
/// Copyright 2017-2019, The Silt Language Project.
44
///
55
/// This project is released under the MIT license, a copy of which is
66
/// available in the repository.

Sources/LiteSupport/String+CommonPrefix.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// String+CommonPrefix.swift
22
///
3-
/// Copyright 2017, The Silt Language Project.
3+
/// Copyright 2017-2019, The Silt Language Project.
44
///
55
/// This project is released under the MIT license, a copy of which is
66
/// available in the repository.

Sources/LiteSupport/Substitutor.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// Substitutor.swift
22
///
3-
/// Copyright 2017, The Silt Language Project.
3+
/// Copyright 2017-2019, The Silt Language Project.
44
///
55
/// This project is released under the MIT license, a copy of which is
66
/// available in the repository.
@@ -9,7 +9,7 @@ import Foundation
99
import Dispatch
1010

1111
public extension String {
12-
public var quoted: String {
12+
var quoted: String {
1313
return "\"\(self)\""
1414
}
1515
}

Sources/LiteSupport/TestFile.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// TestFile.swift
22
///
3-
/// Copyright 2017, The Silt Language Project.
3+
/// Copyright 2017-2019, The Silt Language Project.
44
///
55
/// This project is released under the MIT license, a copy of which is
66
/// available in the repository.

Sources/LiteSupport/TestRunner.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// TestRunner.swift
22
///
3-
/// Copyright 2017, The Silt Language Project.
3+
/// Copyright 2017-2019, The Silt Language Project.
44
///
55
/// This project is released under the MIT license, a copy of which is
66
/// available in the repository.

Sources/LiteSupport/TimeInterval+Formatting.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// TimeInterval+Formatting.swift
22
///
3-
/// Copyright 2017, The Silt Language Project.
3+
/// Copyright 2017-2019, The Silt Language Project.
44
///
55
/// This project is released under the MIT license, a copy of which is
66
/// available in the repository.

Tests/LiteTests/LiteTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// LiteTests.swift
22
///
3-
/// Copyright 2017, The Silt Language Project.
3+
/// Copyright 2017-2019, The Silt Language Project.
44
///
55
/// This project is released under the MIT license, a copy of which is
66
/// available in the repository.

0 commit comments

Comments
 (0)