Skip to content

Commit 50537bd

Browse files
authored
Merge pull request #21642 from kevints/swift-4.2.1-branch
Bump SWIFT_VERSION to 4.2.2
2 parents f4134eb + e333ee2 commit 50537bd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ set_property(CACHE SWIFT_ANALYZE_CODE_COVERAGE PROPERTY
128128
# SWIFT_VERSION is deliberately /not/ cached so that an existing build directory
129129
# can be reused when a new version of Swift comes out (assuming the user hasn't
130130
# manually set it as part of their own CMake configuration).
131-
set(SWIFT_VERSION "4.2.1")
131+
set(SWIFT_VERSION "4.2.2")
132132

133133
set(SWIFT_VENDOR "" CACHE STRING
134134
"The vendor name of the Swift compiler")

test/Parse/ConditionalCompilation/language_version_explicit.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
#endif
2323

2424
// NOTE: Please modify this condition...
25-
#if swift(>=4.2.1)
25+
#if swift(>=4.2.2)
2626
let b = 1
2727
#else
2828
// This shouldn't emit any diagnostics.
2929
asdf asdf asdf asdf
3030
#endif
3131

3232
// NOTE: ...and modify this condition...
33-
#if swift(>=4.2.2)
33+
#if swift(>=4.2.3)
3434
// This shouldn't emit any diagnostics.
3535
asdf asdf asdf asdf
3636
#else

test/Serialization/Recovery/crash-recovery.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class Sub: Base {
1414

1515
// CHECK-CRASH: error: fatal error encountered while reading from module 'Lib'; please file a bug report with your project and the crash log
1616
// CHECK-CRASH-3-NOT: note
17-
// CHECK-CRASH-4: note: compiling as Swift 4.2.1, with 'Lib' built as Swift 3.4
17+
// CHECK-CRASH-4: note: compiling as Swift 4.2.2, with 'Lib' built as Swift 3.4
1818
// CHECK-CRASH-LABEL: *** DESERIALIZATION FAILURE (please include this section in any bug report) ***
1919
// CHECK-CRASH: could not find 'disappearingMethod()' in parent class
2020
// CHECK-CRASH: While loading members for 'Sub' in module 'Lib'

0 commit comments

Comments
 (0)